summaryrefslogtreecommitdiff
path: root/testing
diff options
context:
space:
mode:
authorNicolás Reynolds <fauno@kiwwwi.com.ar>2012-07-02 21:45:22 -0300
committerNicolás Reynolds <fauno@kiwwwi.com.ar>2012-07-02 21:45:22 -0300
commit1f31420f313381bbb03fdc934348f5606134191c (patch)
tree217f5f6da0acef84ca46e3308eff01a57ae6baaa /testing
parent0ca20230bdd33f8e07d2da28bec74c5e685650e9 (diff)
parent20bf19bd85f0a70a575491c17aa7354c1a8fd97d (diff)
Merge branch 'master' of ssh://vparabola/home/parabola/abslibre-pre-mips64el
Conflicts: multilib-testing/gcc-multilib/PKGBUILD multilib/lib32-libdrm/PKGBUILD staging/mpd/PKGBUILD testing/gcc/PKGBUILD
Diffstat (limited to 'testing')
-rw-r--r--testing/ppl/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/testing/ppl/PKGBUILD b/testing/ppl/PKGBUILD
new file mode 100644
index 000000000..f7ad1798b
--- /dev/null
+++ b/testing/ppl/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 162818 2012-07-01 07:04:36Z allan $
+# Maintainer: Allan McRae <allan@archlinux.org>
+# Contributor: ezzetabi <ezzetabi at gawab dot com>
+
+pkgname=ppl
+pkgver=1.0
+pkgrel=1
+pkgdesc="A modern library for convex polyhedra and other numerical abstractions."
+arch=('i686' 'x86_64')
+url="http://bugseng.com/products/ppl"
+license=('GPL3')
+depends=('gmp>=5.0')
+options=('!docs' '!libtool')
+source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz{,.sign})
+md5sums=('c4566928c6b7bb63e95f96d1a7b5cb4c'
+ '5f490df826c76fed296060ca8fca4eb5')
+
+build() {
+ cd $srcdir/ppl-$pkgver
+ ./configure --prefix=/usr --enable-interfaces="c,cxx"
+ make
+}
+
+check() {
+ cd $srcdir/ppl-$pkgver
+ make check
+}
+
+package() {
+ cd $srcdir/ppl-$pkgver
+ make DESTDIR=$pkgdir install
+}
+