Date: Thursday, November 24, 2016 @ 17:47:33 Author: arojas Revision: 196748
Add normaliz, new gap dependency Added: normaliz/ normaliz/trunk/ normaliz/trunk/PKGBUILD ----------+ PKGBUILD | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) Added: normaliz/trunk/PKGBUILD =================================================================== --- normaliz/trunk/PKGBUILD (rev 0) +++ normaliz/trunk/PKGBUILD 2016-11-24 17:47:33 UTC (rev 196748) @@ -0,0 +1,25 @@ +# Maintainer: Antonio Rojas <[email protected]> +# Contributor: Tarn Burton <twburton at gmail dot com> + +pkgname=normaliz +pkgver=3.1.3 +pkgrel=1 +pkgdesc="A tool for computations in affine monoids, vector configurations, lattice polytopes, and rational cones." +arch=(i686 x86_64) +url="https://www.normaliz.uni-osnabrueck.de/" +license=(GPL) +depends=(gmp) +makedepends=(boost) +source=("https://github.com/Normaliz/Normaliz/releases/download/v$pkgver/Normaliz-$pkgver.tar.gz") +md5sums=('68a2e1457dbb8f4e4a3ced528706379c') + +build() { + cd $pkgname-$pkgver + ./configure --prefix=/usr + make +} + +package() { + cd $pkgname-$pkgver + make DESTDIR="$pkgdir" install +}
