diff options
author | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
---|---|---|
committer | Parabola <dev@list.parabolagnulinux.org> | 2011-04-05 14:26:38 +0000 |
commit | 415856bdd4f48ab4f2732996f0bae58595092bbe (patch) | |
tree | ede2018b591f6dfb477fe9341ba17b9bc000fab9 /community/libgringotts/PKGBUILD |
Tue Apr 5 14:26:38 UTC 2011
Diffstat (limited to 'community/libgringotts/PKGBUILD')
-rw-r--r-- | community/libgringotts/PKGBUILD | 26 |
1 files changed, 26 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 +} |