2016-11-25 17:57:25 +00:00
|
|
|
# Maintainer: Antonio Rojas <arojas@archlinux.org>
|
|
|
|
|
|
|
|
# ALARM: Kevin Mihelich <kevin@archlinuxarm.org>
|
|
|
|
# - disable distcc, fails to build with it
|
|
|
|
# - add LDFLAGS and CXXOPT to lower RAM usage
|
|
|
|
# - make -j2 due to RAM constraints
|
|
|
|
|
|
|
|
highmem=1
|
|
|
|
|
|
|
|
pkgname=polymake
|
2017-03-29 13:43:32 +00:00
|
|
|
pkgver=3.1
|
|
|
|
pkgrel=1
|
2016-11-25 17:57:25 +00:00
|
|
|
pkgdesc="Open source software for research in polyhedral geometry"
|
|
|
|
arch=(i686 x86_64)
|
|
|
|
url="https://polymake.org/"
|
|
|
|
license=(GPL)
|
|
|
|
options=('!distcc')
|
2017-03-29 13:43:32 +00:00
|
|
|
depends=(mpfr perl-xml-writer perl-xml-libxml perl-xml-libxslt perl-term-readline-gnu perl-term-readkey)
|
|
|
|
makedepends=(normaliz cddlib lrs bliss-graphs ppl apache-ant boost singular)
|
2016-11-25 17:57:25 +00:00
|
|
|
optdepends=('singular: ideal library' 'ppl: polytope library' 'java-runtime: java module')
|
|
|
|
source=("https://polymake.org/lib/exe/fetch.php/download/polymake-$pkgver-minimal.tar.bz2")
|
2017-03-29 13:43:32 +00:00
|
|
|
sha256sums=('f751e3c34e5ee3a015a99d1151b357130f15878c0bcea82827a19a12009e7fc0')
|
2016-11-25 17:57:25 +00:00
|
|
|
|
|
|
|
prepare() {
|
2017-03-29 13:43:32 +00:00
|
|
|
cd polymake-$pkgver
|
2016-11-25 17:57:25 +00:00
|
|
|
# fix lrs headers location
|
|
|
|
sed -e 's|lrslib.h|lrslib/lrslib.h|g' -i bundled/lrs/apps/polytope/src/lrs_interface.cc \
|
2017-03-29 13:43:32 +00:00
|
|
|
-i bundled/sympol/external/sympol/sympol/raycomputationlrs.cpp
|
2016-11-25 17:57:25 +00:00
|
|
|
sed -e 's|<lrslib.h>|<lrslib/lrslib.h>|g' -e 's|\$lrs_path\/include|$lrs_path/include/lrslib|g' -i bundled/lrs/configure.pl
|
|
|
|
}
|
|
|
|
|
|
|
|
build() {
|
2017-03-29 13:43:32 +00:00
|
|
|
cd polymake-$pkgver
|
2016-11-25 17:57:25 +00:00
|
|
|
LDFLAGS+=" -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
|
|
|
|
./configure --prefix=/usr CXXOPT="-O1"
|
|
|
|
make -j2
|
|
|
|
}
|
|
|
|
|
|
|
|
package() {
|
2017-03-29 13:43:32 +00:00
|
|
|
cd polymake-$pkgver
|
2016-11-25 17:57:25 +00:00
|
|
|
make DESTDIR="$pkgdir" install
|
|
|
|
}
|