diff options
author | root <root@rshg047.dnsready.net> | 2011-04-11 04:43:21 +0000 |
---|---|---|
committer | root <root@rshg047.dnsready.net> | 2011-04-11 04:43:21 +0000 |
commit | 06c7c4c5ef2c808f288b2a8cd63548a322d66754 (patch) | |
tree | 178258b847b80ef8c3f25abc6c5ae2495048b66b /testing/isl | |
parent | 8f6922302486fa1cc1112ff8b3daddb48c3260f2 (diff) |
Mon Apr 11 04:43:21 UTC 2011
Diffstat (limited to 'testing/isl')
-rw-r--r-- | testing/isl/PKGBUILD | 16 |
1 files changed, 12 insertions, 4 deletions
diff --git a/testing/isl/PKGBUILD b/testing/isl/PKGBUILD index 5cd8c8dfa..bba92fb24 100644 --- a/testing/isl/PKGBUILD +++ b/testing/isl/PKGBUILD @@ -1,8 +1,8 @@ -# $Id: PKGBUILD 106792 2011-01-19 09:34:43Z allan $ +# $Id: PKGBUILD 119089 2011-04-10 21:34:57Z allan $ # Maintainer: Allan McRae <allan@archlinux.org> pkgname=isl -pkgver=0.05.1 +pkgver=0.06 pkgrel=1 pkgdesc="Library for manipulating sets and relations of integer points bounded by linear constraints" arch=('i686' 'x86_64') @@ -10,16 +10,24 @@ url="http://www.kotnet.org/~skimo/isl/" license=('LGPL2.1') options=('!libtool') source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2) -md5sums=('8ef8f307d3f042434e358ddf3320dcad') +md5sums=('504f054eaffdd8d07c497ebe3ebc7e04') build() { cd "$srcdir/$pkgname-$pkgver" ./configure --prefix=/usr make +} + +check() { + cd "$srcdir/$pkgname-$pkgver" make check } package() { cd "$srcdir/$pkgname-$pkgver" - make DESTDIR="$pkgdir/" install + make -j1 DESTDIR="$pkgdir/" install + + # this seems a better place for this file... + install -dm755 $pkgdir/usr/share/gdb/auto-load/ + mv $pkgdir/usr/{lib,share/gdb/auto-load}/libisl.so.6.0.0-gdb.py } |