mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
775 B
Bash
37 lines
775 B
Bash
# $Id$
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: ezzetabi <ezzetabi at gawab dot com>
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
# - noautobuild
|
|
|
|
noautobuild=1
|
|
|
|
pkgname=ppl
|
|
pkgver=1.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')
|
|
options=('!docs')
|
|
source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz{,.sign})
|
|
md5sums=('4f2422c0ef3f409707af32108deb30a7'
|
|
'SKIP')
|
|
|
|
build() {
|
|
cd ppl-$pkgver
|
|
./configure --prefix=/usr --enable-interfaces="c,cxx"
|
|
make
|
|
}
|
|
|
|
check() {
|
|
cd ppl-$pkgver
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd ppl-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|