mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-13 22:49:03 +08:00
27 lines
673 B
Bash
27 lines
673 B
Bash
# $Id: $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: ezzetabi <ezzetabi at gawab dot com>
|
|
|
|
pkgname=cloog-ppl
|
|
pkgver=0.15.7
|
|
pkgrel=3
|
|
pkgdesc="Library that generates loops for scanning polyhedra"
|
|
arch=('i686' 'x86_64')
|
|
url="http://www.cloog.org/"
|
|
license=('GPL')
|
|
depends=('ppl>=0.10.2')
|
|
options=('!libtool')
|
|
source=(ftp://gcc.gnu.org/pub/gcc/infrastructure/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('6455e7875daac5bd885545c71c3f2001')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --infodir=/usr/share/info \
|
|
--with-bits=gmp --with-ppl=/usr
|
|
make || return 1
|
|
make DESTDIR=$pkgdir/ install
|
|
|
|
rm -rf $pkgdir/usr/share/info/dir
|
|
}
|