summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD9
2 files changed, 8 insertions, 4 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b5796a7d04eb..b8864088aa8d 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,12 +1,13 @@
pkgbase = barvinok
pkgdesc = A library for counting the number of integer points in parametric and non-parametric polytopes
pkgver = 0.41
- pkgrel = 1
+ pkgrel = 2
url = http://freecode.com/projects/barvinok
arch = x86_64
license = GPL
depends = ntl
depends = isl>0.17
+ depends = isl<0.19
depends = polylib-gmp
source = http://barvinok.gforge.inria.fr/barvinok-0.41.tar.xz
source = fix-missing-isl-include.patch
diff --git a/PKGBUILD b/PKGBUILD
index c2fca4b3f73c..a113f029aecf 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,12 +1,12 @@
# Maintainer: Hans-Nikolai Viessmann <hans AT viess.mn>
pkgname='barvinok'
pkgver=0.41
-pkgrel=1
+pkgrel=2
pkgdesc='A library for counting the number of integer points in parametric and non-parametric polytopes'
arch=('x86_64')
url='http://freecode.com/projects/barvinok'
license=('GPL')
-depends=('ntl' 'isl>0.17' 'polylib-gmp')
+depends=('ntl' 'isl>0.17' 'isl<0.19' 'polylib-gmp')
source=("http://barvinok.gforge.inria.fr/$pkgname-$pkgver.tar.xz"
'fix-missing-isl-include.patch')
md5sums=('a5496a4a93f3f1f26fef07189e12314f'
@@ -22,7 +22,10 @@ prepare() {
patch -p0 < ../fix-missing-isl-include.patch
# rebuild autotools
- autoconf -i
+ msg2 "rebuilding build scripts and makefiles"
+ aclocal
+ automake --add-missing
+ autoconf
}
build() {