summarylogtreecommitdiffstats
path: root/PKGBUILD
diff options
context:
space:
mode:
authorHans-Nikolai Viessmann2018-10-18 13:16:01 +0100
committerHans-Nikolai Viessmann2018-10-18 13:16:01 +0100
commit8cc928c96d826aa937efcff8e8defc0078cc344a (patch)
tree74f136a457a9ff6b97f8e78fa6a069fea0ebb6a3 /PKGBUILD
parenta2a38788af8efce871804d4d29d016b3bb076507 (diff)
downloadaur-8cc928c96d826aa937efcff8e8defc0078cc344a.tar.gz
add version limit (for 0.41.1 bump soon)
Diffstat (limited to 'PKGBUILD')
-rw-r--r--PKGBUILD9
1 files changed, 6 insertions, 3 deletions
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() {