2013-10-30 02:35:41 +00:00
|
|
|
# $Id$
|
2011-08-22 20:56:30 +00:00
|
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
|
|
# Contributor: ezzetabi <ezzetabi at gawab dot com>
|
|
|
|
|
2012-03-16 00:22:43 +00:00
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
2014-01-18 18:25:10 +00:00
|
|
|
# - remove when bumped upstream
|
2011-08-22 20:56:30 +00:00
|
|
|
|
|
|
|
pkgname=ppl
|
2013-10-30 02:35:41 +00:00
|
|
|
pkgver=1.1
|
2012-03-16 00:22:43 +00:00
|
|
|
pkgrel=1
|
2013-10-30 02:35:41 +00:00
|
|
|
pkgdesc="A modern library for convex polyhedra and other numerical abstractions"
|
2011-08-22 20:56:30 +00:00
|
|
|
arch=('i686' 'x86_64')
|
2012-03-16 00:22:43 +00:00
|
|
|
url="http://bugseng.com/products/ppl"
|
2011-08-22 20:56:30 +00:00
|
|
|
license=('GPL3')
|
2013-10-30 02:35:41 +00:00
|
|
|
depends=('gmp')
|
|
|
|
options=('!docs')
|
2012-03-16 00:22:43 +00:00
|
|
|
source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz{,.sign})
|
2013-10-30 02:35:41 +00:00
|
|
|
md5sums=('4f2422c0ef3f409707af32108deb30a7'
|
|
|
|
'SKIP')
|
2011-08-22 20:56:30 +00:00
|
|
|
|
|
|
|
build() {
|
2013-10-30 02:35:41 +00:00
|
|
|
cd ppl-$pkgver
|
2011-08-22 20:56:30 +00:00
|
|
|
./configure --prefix=/usr --enable-interfaces="c,cxx"
|
|
|
|
make
|
2012-03-16 00:22:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
2013-10-30 02:35:41 +00:00
|
|
|
cd ppl-$pkgver
|
|
|
|
make check
|
2011-08-22 20:56:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2013-10-30 02:35:41 +00:00
|
|
|
cd ppl-$pkgver
|
|
|
|
make DESTDIR="$pkgdir" install
|
2011-08-22 20:56:30 +00:00
|
|
|
}
|