diff options
author | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2013-07-19 01:10:32 -0700 |
commit | 8fbc0076a4827ddc6af92e0b9daa4c4c31450808 (patch) | |
tree | 03fd0e2921ebd53228d9a93e32ed3976b636cbea /community/judy/PKGBUILD | |
parent | e445a313723389ba9ee1fded025c567dae5b21ea (diff) |
Fri Jul 19 01:09:18 PDT 2013
Diffstat (limited to 'community/judy/PKGBUILD')
-rw-r--r-- | community/judy/PKGBUILD | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/community/judy/PKGBUILD b/community/judy/PKGBUILD new file mode 100644 index 000000000..e0fc510d8 --- /dev/null +++ b/community/judy/PKGBUILD @@ -0,0 +1,23 @@ +# $Id: PKGBUILD 65582 2012-02-21 09:06:42Z spupykin $ +# Maintainer: Sergej Pupykin <pupykin.s+arch@gmail.com> +# Contributor: d'Ronin <daronin@2600.com> + +pkgname=judy +pkgver=1.0.5 +pkgrel=3 +arch=('i686' 'x86_64') +pkgdesc="C library creating and accessing dynamic arrays" +makedepends=(gcc) +options=(!strip) +license=('LGPL') +url="http://judy.sourceforge.net/" +source=(http://downloads.sourceforge.net/judy/Judy-$pkgver.tar.gz) +md5sums=('115a0d26302676e962ae2f70ec484a54') + +build() +{ + cd $srcdir/$pkgname-$pkgver + [ $NOEXTRACT -eq 1 ] || ./configure --prefix=/usr + make -j1 + make DESTDIR=$pkgdir install +} |