summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorOndřej Hošek2017-06-20 15:56:27 +0200
committerOndřej Hošek2017-06-20 16:01:15 +0200
commit2f97e6d9b3dc73b2cedf1df9484402629c9fcdaf (patch)
treeaa2cf42e55c8aede9aa607e4e92b9aa85aeead3a
parenta9153e7a305db164931496227c00d87982a4cfad (diff)
downloadaur-2f97e6d9b3dc73b2cedf1df9484402629c9fcdaf.tar.gz
compile bindings too (new makedepend: clang)
-rw-r--r--.SRCINFO1
-rw-r--r--PKGBUILD3
2 files changed, 3 insertions, 1 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 32b6cce18ca0..21efa9bf2abd 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -8,6 +8,7 @@ pkgbase = isl-git
arch = i686
arch = x86_64
license = MIT
+ makedepends = clang
depends = gmp
provides = isl
conflicts = isl
diff --git a/PKGBUILD b/PKGBUILD
index a4eedbd9532d..991227c661aa 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -8,6 +8,7 @@ pkgdesc="Library for manipulating sets and relations of integer points bounded b
arch=('i686' 'x86_64')
url="http://isl.gforge.inria.fr/"
depends=('gmp')
+makedepends=('clang')
license=('MIT')
options=('!libtool')
provides=('isl')
@@ -23,7 +24,7 @@ pkgver() {
build() {
cd "$srcdir/${pkgname%-git}"
./autogen.sh
- ./configure --prefix=/usr
+ ./configure --prefix=/usr --with-clang=system
make
}