mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
37 lines
909 B
Bash
37 lines
909 B
Bash
# $Id: PKGBUILD 104416 2011-01-02 12:23:31Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: ezzetabi <ezzetabi at gawab dot com>
|
|
|
|
# PlugApps: Kevin Mihelich <kevin@plugapps.com>
|
|
# - no changes, here just to maintain this version
|
|
|
|
plugrel=1
|
|
noautobuild=1
|
|
|
|
pkgname=cloog-ppl
|
|
pkgver=0.15.10
|
|
pkgrel=2
|
|
pkgdesc="Library that generates loops for scanning polyhedra"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.cloog.org/"
|
|
license=('GPL')
|
|
depends=('ppl>=0.11')
|
|
options=('!libtool')
|
|
source=(ftp://gcc.gnu.org/pub/gcc/infrastructure/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('04aa756179b6d850d9ffa50f61b91895')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./autogen.sh
|
|
./configure --prefix=/usr --includedir=/usr/include/cloog-ppl \
|
|
--with-bits=gmp --with-ppl=/usr
|
|
make
|
|
make check
|
|
}
|
|
|
|
package() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
make DESTDIR=$pkgdir/ install
|
|
mv $pkgdir/usr/bin/cloog{,-ppl}
|
|
}
|