From 7ea31861e8f5b8e8c77be5d68c62c38a319c3223 Mon Sep 17 00:00:00 2001 From: Aurélien DESBRIÈRES Date: Thu, 12 Jun 2014 09:02:09 +0200 Subject: irssi-otr-git --- pcr/irssi-otr-git/PKGBUILD | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 pcr/irssi-otr-git/PKGBUILD 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 +# Maintainer (Parabola) : Aurélien DESBRIÈRES + +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 +} + -- cgit v1.2.3 From c7e9df92c473d64ee98d3717462abf424d080578 Mon Sep 17 00:00:00 2001 From: Aurélien DESBRIÈRES Date: Thu, 12 Jun 2014 09:22:29 +0200 Subject: zulucrypt --- pcr/zulucrypt/PKGBUILD | 7 ++++--- pcr/zulucrypt/zulucrypt.changelog | 3 +++ 2 files changed, 7 insertions(+), 3 deletions(-) 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 -# Maintainer : Parabola Aurélien DESBRIÈRES +# Contributor (Arch) : Salan54 +# Maintainer (Parabola) : Aurélien DESBRIÈRES 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. -- cgit v1.2.3