2012-03-16 00:22:43 +00:00
|
|
|
# $Id: PKGBUILD 151928 2012-03-04 10:58:10Z allan $
|
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>
|
|
|
|
# - noautobuild
|
|
|
|
|
2011-08-22 20:56:30 +00:00
|
|
|
plugrel=1
|
|
|
|
|
|
|
|
pkgname=ppl
|
2012-07-07 00:06:55 +00:00
|
|
|
pkgver=1.0
|
2012-03-16 00:22:43 +00:00
|
|
|
pkgrel=1
|
2011-08-22 20:56:30 +00:00
|
|
|
pkgdesc="A modern library for convex polyhedra and other numerical abstractions."
|
|
|
|
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')
|
|
|
|
depends=('gmp>=5.0')
|
|
|
|
options=('!docs' '!libtool')
|
2012-03-16 00:22:43 +00:00
|
|
|
source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz{,.sign})
|
2012-07-07 00:06:55 +00:00
|
|
|
md5sums=('c4566928c6b7bb63e95f96d1a7b5cb4c'
|
|
|
|
'5f490df826c76fed296060ca8fca4eb5')
|
2011-08-22 20:56:30 +00:00
|
|
|
|
|
|
|
build() {
|
|
|
|
cd $srcdir/ppl-$pkgver
|
|
|
|
./configure --prefix=/usr --enable-interfaces="c,cxx"
|
|
|
|
make
|
2012-03-16 00:22:43 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
check() {
|
|
|
|
cd $srcdir/ppl-$pkgver
|
2012-07-07 00:06:55 +00:00
|
|
|
#make check
|
2011-08-22 20:56:30 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
|
|
|
cd $srcdir/ppl-$pkgver
|
|
|
|
make DESTDIR=$pkgdir install
|
|
|
|
}
|