diff options
author | root <root@rshg054.dnsready.net> | 2011-12-13 23:14:49 +0000 |
---|---|---|
committer | root <root@rshg054.dnsready.net> | 2011-12-13 23:14:49 +0000 |
commit | f4dcb5cb43b68e265512a03a160bdda634818b43 (patch) | |
tree | 9000841b67cefbce37255cb4d728e80bd5a11586 /staging/isl | |
parent | cb9c375209c236c16557878a1b864f91de27b88d (diff) |
Tue Dec 13 23:14:49 UTC 2011
Diffstat (limited to 'staging/isl')
-rw-r--r-- | staging/isl/PKGBUILD | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/staging/isl/PKGBUILD b/staging/isl/PKGBUILD new file mode 100644 index 000000000..6c4dcf315 --- /dev/null +++ b/staging/isl/PKGBUILD @@ -0,0 +1,33 @@ +# $Id: PKGBUILD 144975 2011-12-12 23:17:00Z allan $ +# Maintainer: Allan McRae <allan@archlinux.org> + +pkgname=isl +pkgver=0.08 +pkgrel=1 +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=('ea6d534348cae97ff9b20ac5ea13d6bc') + +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.8.0.0-gdb.py +} |