mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
added core/isl - version hold
This commit is contained in:
parent
7058f3e7be
commit
25a36d90b6
1 changed files with 37 additions and 0 deletions
37
core/isl/PKGBUILD
Normal file
37
core/isl/PKGBUILD
Normal file
|
@ -0,0 +1,37 @@
|
|||
# $Id: PKGBUILD 162067 2012-06-19 12:27:31Z allan $
|
||||
# Maintainer: Allan McRae <allan@archlinux.org>
|
||||
|
||||
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
||||
# - no changes, just holding version until i get other toolchain packages done
|
||||
|
||||
noautobuild=1
|
||||
|
||||
pkgname=isl
|
||||
pkgver=0.09
|
||||
pkgrel=2
|
||||
pkgdesc="Library for manipulating sets and relations of integer points bounded by linear constraints"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.kotnet.org/~skimo/isl/"
|
||||
license=('LGPL2.1')
|
||||
options=('!libtool')
|
||||
source=(http://www.kotnet.org/~skimo/isl/$pkgname-$pkgver.tar.bz2)
|
||||
md5sums=('c1ece653891bb2a5f55ca25e3f4e8f35')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
./configure --prefix=/usr
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make -j1 DESTDIR="$pkgdir/" install
|
||||
|
||||
install -dm755 $pkgdir/usr/share/gdb/auto-load/usr/lib/
|
||||
mv $pkgdir/{,/usr/share/gdb/auto-load/}usr/lib/libisl.so.10.0.0-gdb.py
|
||||
}
|
Loading…
Reference in a new issue