mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-28 22:57:37 +00:00
added core/cloog - version hold
This commit is contained in:
parent
ae7dcdc721
commit
7058f3e7be
1 changed files with 36 additions and 0 deletions
36
core/cloog/PKGBUILD
Normal file
36
core/cloog/PKGBUILD
Normal file
|
@ -0,0 +1,36 @@
|
|||
# $Id: PKGBUILD 162068 2012-06-19 12:27:34Z 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=cloog
|
||||
pkgver=0.17.0
|
||||
pkgrel=1
|
||||
pkgdesc="Library that generates loops for scanning polyhedra"
|
||||
arch=('i686' 'x86_64')
|
||||
url="http://www.bastoul.net/cloog/"
|
||||
license=('GPL')
|
||||
depends=('isl' 'gmp')
|
||||
conflicts=('cloog-ppl<0.15.10-2')
|
||||
options=('!libtool')
|
||||
source=(http://www.bastoul.net/cloog/pages/download/$pkgname-$pkgver.tar.gz)
|
||||
md5sums=('0aa3302c81f65ca62c114e5264f8a802')
|
||||
|
||||
build() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
./configure --prefix=/usr --with-isl=system --with-gmp=system
|
||||
make
|
||||
}
|
||||
|
||||
check() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make check
|
||||
}
|
||||
|
||||
package() {
|
||||
cd "$srcdir/$pkgname-$pkgver"
|
||||
make DESTDIR="$pkgdir/" install
|
||||
}
|
Loading…
Reference in a new issue