2016-11-25 17:57:25 +00:00
|
|
|
# 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
|
2020-06-15 18:31:22 +00:00
|
|
|
pkgver=4.1
|
2020-06-23 18:09:33 +00:00
|
|
|
pkgrel=2
|
2020-06-24 01:23:38 +00:00
|
|
|
_perlver=5.32.0
|
2016-11-25 17:57:25 +00:00
|
|
|
pkgdesc="Open source software for research in polyhedral geometry"
|
2017-12-04 13:46:31 +00:00
|
|
|
arch=(x86_64)
|
2016-11-25 17:57:25 +00:00
|
|
|
url="https://polymake.org/"
|
|
|
|
license=(GPL)
|
2019-11-20 01:27:02 +00:00
|
|
|
depends=(normaliz singular ppl lrs perl-xml-writer perl-xml-libxml perl-xml-libxslt
|
2020-04-06 13:27:10 +00:00
|
|
|
perl-term-readline-gnu perl-term-readkey perl-json sympol perl=$_perlver)
|
2019-11-20 01:27:02 +00:00
|
|
|
makedepends=(ninja cddlib ant boost bliss libnsl jdk8-openjdk permlib)
|
2018-03-09 13:45:30 +00:00
|
|
|
optdepends=('java-runtime: java module')
|
2020-06-15 18:31:22 +00:00
|
|
|
source=("https://polymake.org/lib/exe/fetch.php/download/polymake-${pkgver/.r/r}-minimal.tar.bz2")
|
|
|
|
sha256sums=('7e8d45bce800007e5c26ce5b7b5ac95731cbfc99df021e715abeb494ae550ac9')
|
2016-11-25 17:57:25 +00:00
|
|
|
|
|
|
|
build() {
|
2020-06-15 18:31:22 +00:00
|
|
|
cd polymake-$pkgver
|
2020-01-30 01:09:26 +00:00
|
|
|
./configure \
|
|
|
|
--prefix=/usr \
|
|
|
|
--with-cdd=/usr \
|
|
|
|
--with-lrs=/usr \
|
|
|
|
--with-permlib=/usr \
|
|
|
|
--with-sympol=/usr CXXOPT="-O1"
|
2019-11-20 01:27:02 +00:00
|
|
|
LDFLAGS+=" -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
|
2020-01-30 01:09:26 +00:00
|
|
|
make -j2
|
2016-11-25 17:57:25 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2020-06-15 18:31:22 +00:00
|
|
|
cd polymake-$pkgver
|
2016-11-25 17:57:25 +00:00
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|