mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-09 23:17:16 +08:00
26 lines
693 B
Bash
26 lines
693 B
Bash
# $Id: PKGBUILD 72643 2010-03-19 03:05:11Z allan $
|
|
# Maintainer: Allan McRae <allan@archlinux.org>
|
|
# Contributor: ezzetabi <ezzetabi at gawab dot com>
|
|
|
|
pkgname=cloog-ppl
|
|
pkgver=0.15.8
|
|
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-3')
|
|
options=('!libtool')
|
|
source=(ftp://gcc.gnu.org/pub/gcc/infrastructure/${pkgname}-${pkgver}.tar.gz)
|
|
md5sums=('b27bc188e3e99dca2923ce9323b8fb63')
|
|
|
|
build() {
|
|
cd $srcdir/$pkgname-$pkgver
|
|
|
|
./configure --prefix=/usr --infodir=/usr/share/info \
|
|
--with-bits=gmp --with-ppl=/usr
|
|
make || return 1
|
|
make check
|
|
make DESTDIR=$pkgdir/ install
|
|
}
|