diff options
Diffstat (limited to 'community/libgringotts')
-rw-r--r-- | community/libgringotts/PKGBUILD | 26 | ||||
-rw-r--r-- | community/libgringotts/libgringotts.changelog | 2 |
2 files changed, 28 insertions, 0 deletions
diff --git a/community/libgringotts/PKGBUILD b/community/libgringotts/PKGBUILD new file mode 100644 index 000000000..4dfc27e40 --- /dev/null +++ b/community/libgringotts/PKGBUILD @@ -0,0 +1,26 @@ +# $Id: PKGBUILD 22411 2010-07-21 18:37:34Z jlichtblau $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + +pkgname=libgringotts +pkgver=1.2.1 +pkgrel=7 +pkgdesc="Encryption backend for Gringotts." +arch=('i686' 'x86_64') +url="http://developer.berlios.de/projects/gringotts" +license=('GPL') +depends=('bzip2' 'libmcrypt' 'libtool' 'mhash' 'zlib') +makedepends=('autoconf') +changelog=$pkgname.changelog +source=(http://download.berlios.de/gringotts/$pkgname-$pkgver.tar.bz2) +md5sums=('b2b1bad56ef33153f251ccd9500860be') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + autoconf + ./configure --prefix=/usr + make || return 1 + make DESTDIR=${pkgdir} install + + rm -fr ${pkgdir}/usr/share || return 1 +} diff --git a/community/libgringotts/libgringotts.changelog b/community/libgringotts/libgringotts.changelog new file mode 100644 index 000000000..b23626f44 --- /dev/null +++ b/community/libgringotts/libgringotts.changelog @@ -0,0 +1,2 @@ +2009-03-21 Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + * osmo dependency, moved to [community] |