summaryrefslogtreecommitdiff
path: root/extra/ppl
diff options
context:
space:
mode:
authorMichał Masłowski <mtjm@mtjm.eu>2013-04-04 16:44:12 +0200
committerMichał Masłowski <mtjm@mtjm.eu>2013-04-04 16:44:12 +0200
commitc24d2623d795ac7ee5435b56dd6e413e3cbd2f69 (patch)
tree36fd6f84a97f0ee7bde3592ea33176d1b98d64eb /extra/ppl
parentd2e9c77d6881eb7ef37edf747a77f83168bbe9b7 (diff)
parent1b6860ed7a33a22c4202348a4f42afbb5d26be09 (diff)
Merge branch 'master' of ssh://parabolagnulinux.org:1863/home/parabola/abslibre-pre-mips64el
Conflicts: community/celt-0.7/PKGBUILD core/binutils/PKGBUILD core/gcc/PKGBUILD extra/gnome-media/PKGBUILD extra/libgnome-media-profiles/PKGBUILD extra/libwebp/PKGBUILD extra/telepathy-kde-desktop-applets/PKGBUILD extra/telepathy-kde-presence-applet/PKGBUILD
Diffstat (limited to 'extra/ppl')
-rw-r--r--extra/ppl/PKGBUILD33
1 files changed, 33 insertions, 0 deletions
diff --git a/extra/ppl/PKGBUILD b/extra/ppl/PKGBUILD
new file mode 100644
index 000000000..e75e6507e
--- /dev/null
+++ b/extra/ppl/PKGBUILD
@@ -0,0 +1,33 @@
+# $Id: PKGBUILD 181214 2013-04-02 13:01:46Z allan $
+# Maintainer: Allan McRae <allan@archlinux.org>
+# Contributor: ezzetabi <ezzetabi at gawab dot com>
+
+pkgname=ppl
+pkgver=1.0
+pkgrel=1.1
+pkgdesc="A modern library for convex polyhedra and other numerical abstractions."
+arch=('i686' 'x86_64' 'mips64el')
+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
+}
+