diff options
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 +} |