summaryrefslogtreecommitdiff
path: root/testing/cloog/PKGBUILD
diff options
context:
space:
mode:
authorNicolas Reynolds <fauno@kiwwwi.com.ar>2011-08-16 11:12:15 -0300
committerNicolas Reynolds <fauno@kiwwwi.com.ar>2011-08-16 11:12:15 -0300
commitb73709861e566f564c8cf5cde4b40bd3d17982d9 (patch)
tree116cd554c488357d4e905feb7f41983a88771517 /testing/cloog/PKGBUILD
parentaf1b08b8cb081b88686b319a122aa5dbf096455f (diff)
parentea595018ba8ae00d7030ff296ec4f50e122d2ea9 (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: multilib/libtool-multilib/PKGBUILD
Diffstat (limited to 'testing/cloog/PKGBUILD')
-rw-r--r--testing/cloog/PKGBUILD31
1 files changed, 31 insertions, 0 deletions
diff --git a/testing/cloog/PKGBUILD b/testing/cloog/PKGBUILD
new file mode 100644
index 000000000..1b26aee0f
--- /dev/null
+++ b/testing/cloog/PKGBUILD
@@ -0,0 +1,31 @@
+# $Id: PKGBUILD 135495 2011-08-14 09:41:50Z allan $
+# Maintainer: Allan McRae <allan@archlinux.org>
+
+pkgname=cloog
+pkgver=0.16.2
+pkgrel=2
+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=('83877caaa879c7160063138bb18348e7')
+
+build() {
+ cd "$srcdir/$pkgname-$pkgver"
+ ./configure --prefix=/usr --with-isl=system --with-gmp=system
+ make
+}
+
+check() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make check
+}
+
+package() {
+ cd "$srcdir/$pkgname-$pkgver"
+ make DESTDIR="$pkgdir/" install
+}