blob: d791e5e9064f4b0565ed8b237b51ee12993f7836 (
plain)
1 # Description: A library for manipulating sets and relations of integer points bounded by linear constraints
2 # URL: https://libisl.sourceforge.io/
3 # Maintainer: Aaron Ball, nullspoon at oper dot io
4 # Depends on:
5 name=isl
6 version=0.26
7 release=1
8 source=(https://libisl.sourceforge.io/isl-${version}.tar.xz)
9
10 build() {
11 cd ${name}-${version}
12 ./configure --prefix=/usr
13 make
14 make DESTDIR=${PKG} install
15 }
|