PKGBUILDs/community/polymake/PKGBUILD
2020-01-30 01:09:26 +00:00

38 lines
1.1 KiB
Bash

# Maintainer: Antonio Rojas <arojas@archlinux.org>
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
# - add LDFLAGS and CXXOPT to lower RAM usage
# - make -j2 due to RAM constraints
highmem=1
pkgname=polymake
pkgver=4.0
pkgrel=1
pkgdesc="Open source software for research in polyhedral geometry"
arch=(x86_64)
url="https://polymake.org/"
license=(GPL)
depends=(normaliz singular ppl lrs perl-xml-writer perl-xml-libxml perl-xml-libxslt
perl-term-readline-gnu perl-term-readkey perl-json sympol)
makedepends=(ninja cddlib ant boost bliss libnsl jdk8-openjdk permlib)
optdepends=('java-runtime: java module')
source=("https://polymake.org/lib/exe/fetch.php/download/polymake-$pkgver-minimal.tar.bz2")
sha256sums=('f6d350758377b240e78d16781555c5679bc36f98e181cff17490c963eac49c5b')
build() {
cd polymake-$pkgver
./configure \
--prefix=/usr \
--with-cdd=/usr \
--with-lrs=/usr \
--with-permlib=/usr \
--with-sympol=/usr CXXOPT="-O1"
LDFLAGS+=" -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
make -j2
}
package() {
cd polymake-$pkgver
make DESTDIR="$pkgdir" install
}