mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-16 05:00:24 +08:00
25 lines
636 B
Bash
25 lines
636 B
Bash
|
# $Id: $
|
||
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
||
|
# Contributor: ezzetabi <ezzetabi at gawab dot com>
|
||
|
|
||
|
pkgname=cloog-ppl
|
||
|
pkgver=0.15.7
|
||
|
pkgrel=1
|
||
|
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
|
||
|
}
|