core -> extra/ppl to 1.1-1

This commit is contained in:
Kevin Mihelich 2013-10-30 02:35:41 +00:00
parent 3adf6e4f45
commit 7fd4226936

View file

@ -1,4 +1,4 @@
# $Id: PKGBUILD 151928 2012-03-04 10:58:10Z allan $ # $Id$
# Maintainer: Allan McRae <allan@archlinux.org> # Maintainer: Allan McRae <allan@archlinux.org>
# Contributor: ezzetabi <ezzetabi at gawab dot com> # Contributor: ezzetabi <ezzetabi at gawab dot com>
@ -8,30 +8,30 @@
noautobuild=1 noautobuild=1
pkgname=ppl pkgname=ppl
pkgver=1.0 pkgver=1.1
pkgrel=1 pkgrel=1
pkgdesc="A modern library for convex polyhedra and other numerical abstractions." pkgdesc="A modern library for convex polyhedra and other numerical abstractions"
arch=('i686' 'x86_64') arch=('i686' 'x86_64')
url="http://bugseng.com/products/ppl" url="http://bugseng.com/products/ppl"
license=('GPL3') license=('GPL3')
depends=('gmp>=5.0') depends=('gmp')
options=('!docs' '!libtool') options=('!docs')
source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz{,.sign}) source=(http://bugseng.com/products/ppl/download/ftp/releases/$pkgver/ppl-$pkgver.tar.gz{,.sign})
md5sums=('c4566928c6b7bb63e95f96d1a7b5cb4c' md5sums=('4f2422c0ef3f409707af32108deb30a7'
'5f490df826c76fed296060ca8fca4eb5') 'SKIP')
build() { build() {
cd $srcdir/ppl-$pkgver cd ppl-$pkgver
./configure --prefix=/usr --enable-interfaces="c,cxx" ./configure --prefix=/usr --enable-interfaces="c,cxx"
make make
} }
check() { check() {
cd $srcdir/ppl-$pkgver cd ppl-$pkgver
#make check make check
} }
package() { package() {
cd $srcdir/ppl-$pkgver cd ppl-$pkgver
make DESTDIR=$pkgdir install make DESTDIR="$pkgdir" install
} }