diff options
Diffstat (limited to 'testing/cloog/PKGBUILD')
-rw-r--r-- | testing/cloog/PKGBUILD | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/testing/cloog/PKGBUILD b/testing/cloog/PKGBUILD new file mode 100644 index 000000000..82049f36d --- /dev/null +++ b/testing/cloog/PKGBUILD @@ -0,0 +1,27 @@ +# $Id: PKGBUILD 106802 2011-01-19 09:43:37Z allan $ +# Maintainer: Allan McRae <allan@archlinux.org> + +pkgname=cloog +pkgver=0.16.1 +pkgrel=1 +pkgdesc="Library that generates loops for scanning polyhedra" +arch=('i686' 'x86_64') +url="http://www.bastoul.net/cloog/" +license=('GPL') +depends=('isl' 'gmp') +conflicts=('cloog-ppl<0.15.10-2') +options=('!libtool') +source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz) +md5sums=('947123350d1ff6dcb4b0774947ac015a') + +build() { + cd "$srcdir/$pkgname-$pkgver" + ./configure --prefix=/usr --with-isl=system --with-gmp=system + make + make check +} + +package() { + cd "$srcdir/$pkgname-$pkgver" + make DESTDIR="$pkgdir/" install +} |