# Maintainer: Hans-Nikolai Viessmann pkgname='barvinok' pkgver=0.41.3 pkgrel=1 pkgdesc='A library for counting the number of integer points in parametric and non-parametric polytopes' arch=('x86_64') url='http://barvinok.gforge.inria.fr/' license=('GPL') depends=('ntl' 'isl>0.19' 'polylib-gmp') source=("http://barvinok.gforge.inria.fr/$pkgname-$pkgver.tar.xz") md5sums=('f6fc7dced67d518f1462e39f5b958a37') build() { cd "$srcdir/$pkgname-$pkgver" # NTL 11 now uses pthread functions, so we need to have it link to libpthread. ./configure --prefix=/usr --enable-shared-barvinok --with-isl=system --with-polylib=system LIBS="-lpthread" make } check() { cd "$srcdir/$pkgname-$pkgver" make check } package() { cd "$srcdir/$pkgname-$pkgver" make DESTDIR="$pkgdir" install }