PKGBUILDs/extra/ppl/PKGBUILD

38 lines
775 B
Bash
Raw Normal View History

2013-10-30 02:35:41 +00:00
# $Id$
# 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
2012-07-07 17:02:14 +00:00
noautobuild=1
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"
arch=('i686' 'x86_64')
2012-03-16 00:22:43 +00:00
url="http://bugseng.com/products/ppl"
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')
build() {
2013-10-30 02:35:41 +00:00
cd ppl-$pkgver
./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
}
package() {
2013-10-30 02:35:41 +00:00
cd ppl-$pkgver
make DESTDIR="$pkgdir" install
}