diff options
-rw-r--r-- | pcr/irssi-otr-git/PKGBUILD | 43 | ||||
-rw-r--r-- | pcr/zulucrypt/PKGBUILD | 7 | ||||
-rw-r--r-- | pcr/zulucrypt/zulucrypt.changelog | 3 |
3 files changed, 50 insertions, 3 deletions
diff --git a/pcr/irssi-otr-git/PKGBUILD b/pcr/irssi-otr-git/PKGBUILD new file mode 100644 index 000000000..b4d19d97a --- /dev/null +++ b/pcr/irssi-otr-git/PKGBUILD @@ -0,0 +1,43 @@ +# Contributor (Arch) : quantax -- contact via Arch Linux forum or AUR +# Contributor (Arch) : Federico Cinelli <cinelli.federico@gmail.com> +# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> + +pkgname=irssi-otr-git +pkgver=20090814 +pkgrel=1 +pkgdesc="Off-the-Record Messaging (OTR) for the Irssi IRC client." +arch=('i686' 'x86_64') +url="http://irssi-otr.tuxfamily.org/" +license=('GPL') +depends=(irssi libotr git) +makedepends=(cmake pkgconfig python) +conflicts=(irssi-otr) +provides=(irssi-otr) +source=('git://git.tuxfamily.org/gitroot/irssiotr/irssiotr.git') + +_gitroot="git://git.tuxfamily.org/gitroot/irssiotr/irssiotr.git" +_gitname="irssiotr" + +build() { + cd "$srcdir" + msg "Connecting to GIT server...." + + if [ -d "$_gitname" ] ; then + cd "$_gitname" && git pull origin + msg "The local files are updated." + else + git clone "$_gitroot" + fi + + msg "GIT checkout done or server timeout" + msg "Starting make..." + + rm -rf "$srcdir/$_gitname-build" + cp -r "$srcdir/$_gitname" "${srcdir}/${_gitname}-build" + cd "$srcdir/$_gitname-build" + + cmake -DCMAKE_INSTALL_PREFIX=/usr . + cp -f LICENSE README irssi + make && make DESTDIR="$pkgdir/" install +} + diff --git a/pcr/zulucrypt/PKGBUILD b/pcr/zulucrypt/PKGBUILD index 3beb2a7f8..21683a01f 100644 --- a/pcr/zulucrypt/PKGBUILD +++ b/pcr/zulucrypt/PKGBUILD @@ -1,8 +1,8 @@ -# Contributor: Salan54 <salan at fremenil dot com> -# Maintainer : Parabola Aurélien DESBRIÈRES <aurelien@hackers.camp> +# Contributor (Arch) : Salan54 <salan at fremenil dot com> +# Maintainer (Parabola) : Aurélien DESBRIÈRES <aurelien@hackers.camp> pkgname=zulucrypt -pkgver=4.7.1 +pkgver=4.7.2 pkgrel=1 _altpkgname=zuluCrypt pkgdesc="a cli and gui frontend to cryptsetup." @@ -15,6 +15,7 @@ conflicts=('zulucrypt-git') makedepends=('cmake') options=('!buildflags') source=("https://github.com/mhogomchungu/zuluCrypt/releases/download/${pkgver}/${_altpkgname}-${pkgver}.tar.bz2") + changelog=${pkgname}.changelog install=${pkgname}.install diff --git a/pcr/zulucrypt/zulucrypt.changelog b/pcr/zulucrypt/zulucrypt.changelog index f69f7f5d4..dc4d6fc60 100644 --- a/pcr/zulucrypt/zulucrypt.changelog +++ b/pcr/zulucrypt/zulucrypt.changelog @@ -185,3 +185,6 @@ version 4.7.0 version 4.7.1 -- fix a build issue in gcc 4.9 + +version 4.7.2 +-- add support for opening TrueCrypt volumes using a passphrase together with one or more keyfiles. |