diff options
author | root <root@rshg054.dnsready.net> | 2011-08-15 23:14:29 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-08-15 23:14:29 +0000 |
commit | ea595018ba8ae00d7030ff296ec4f50e122d2ea9 (patch) | |
tree | ea62e7b37f59699ecfd7183fa33f0f3a81d39cc0 /testing/isl | |
parent | 4784cc8068c68b6fc23c2bd0ee8158b2a924f5f4 (diff) |
Mon Aug 15 23:14:29 UTC 2011
Diffstat (limited to 'testing/isl')
-rw-r--r-- | testing/isl/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/isl/PKGBUILD b/testing/isl/PKGBUILD new file mode 100644 index 000000000..5a118360a --- /dev/null +++ b/testing/isl/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 135492 2011-08-14 09:39:59Z allan $ +# Maintainer: Allan McRae <allan@archlinux.org> + +pkgname=isl +pkgver=0.06 +pkgrel=2 +pkgdesc="Library for manipulating sets and relations of integer points bounded by linear constraints" +arch=('i686' 'x86_64') +url="http://www.kotnet.org/~skimo/isl/" +license=('LGPL2.1') +options=('!libtool') +source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2) +md5sums=('504f054eaffdd8d07c497ebe3ebc7e04') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr + make +} + +check() { + cd "$srcdir/$pkgname-$pkgver" + make check +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + 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 +} |