diff options
author | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-08-13 01:33:19 -0700 |
commit | 7a65a910b77ad191d69881098c47f9b0c852d92e (patch) | |
tree | 9564e611af1442f8952a8cbddb3b0ad25ed71aab /community/libgringotts/PKGBUILD | |
parent | 60da6abff6c9577a783d72865f11de7a585e912e (diff) |
Tue Aug 13 01:31:08 PDT 2013
Diffstat (limited to 'community/libgringotts/PKGBUILD')
-rw-r--r-- | community/libgringotts/PKGBUILD | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/community/libgringotts/PKGBUILD b/community/libgringotts/PKGBUILD new file mode 100644 index 000000000..ec06cbb6b --- /dev/null +++ b/community/libgringotts/PKGBUILD @@ -0,0 +1,31 @@ +# $Id: PKGBUILD 70182 2012-05-01 12:27:33Z andrea $ +# Maintainer: Jaroslav Lichtblau <dragonlord@aur.archlinux.org> + +pkgname=libgringotts +pkgver=1.2.1 +pkgrel=10 +pkgdesc="Encryption backend for Gringotts" +arch=('i686' 'x86_64') +url="http://developer.berlios.de/projects/gringotts" +license=('GPL') +depends=('bzip2' 'libmcrypt' 'mhash' 'zlib') +changelog=$pkgname.changelog +options=('!libtool') +source=(http://download.berlios.de/gringotts/$pkgname-$pkgver.tar.bz2) +md5sums=('b2b1bad56ef33153f251ccd9500860be') + +build() { + cd ${srcdir}/$pkgname-$pkgver + + autoconf + ./configure --prefix=/usr + make +} + +package() { + cd ${srcdir}/$pkgname-$pkgver + + make DESTDIR=${pkgdir} install + + rm -fr ${pkgdir}/usr/share +} |