summaryrefslogtreecommitdiff
path: root/testing/ppl/PKGBUILD
diff options
context:
space:
mode:
authorroot <root@rshg054.dnsready.net>2012-04-20 00:01:59 +0000
committerroot <root@rshg054.dnsready.net>2012-04-20 00:01:59 +0000
commit68572eac2031955131806e1ab066f5aaac1396e2 (patch)
treea7ad0bf8988effbf1a55c885f968d10660055cf9 /testing/ppl/PKGBUILD
parent85ca6bfccdec6939881572fb1154f1a07d54937c (diff)
Fri Apr 20 00:01:59 UTC 2012
Diffstat (limited to 'testing/ppl/PKGBUILD')
-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..b4ddc053f
--- /dev/null
+++ b/testing/ppl/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 156421 2012-04-18 06:57:57Z allan $
+# Maintainer: Allan McRae <allan@archlinux.org>
+# Contributor: ezzetabi <ezzetabi at gawab dot com>
+
+pkgname=ppl
+pkgver=0.12.1
+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=('cec8144f2072ac45a850214cca97d075'
+ '43eeeb147f9d8b3608aead63486c9545')
+
+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
+}
+