mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
39 lines
901 B
Bash
39 lines
901 B
Bash
# $Id: PKGBUILD 151928 2012-03-04 10:58:10Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: ezzetabi <ezzetabi at gawab dot com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - noautobuild
|
|
|
|
noautobuild=1
|
|
plugrel=1
|
|
|
|
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
|
|
}
|
|
|