mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
874 B
Bash
37 lines
874 B
Bash
|
# $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
|
||
|
}
|