PKGBUILDs/community/polymake/PKGBUILD

41 lines
1.4 KiB
Bash
Raw Normal View History

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
2018-01-30 00:46:06 +00:00
pkgver=3.2
pkgrel=1
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)
2018-01-30 00:46:06 +00:00
depends=(mpfr normaliz perl-xml-writer perl-xml-libxml perl-xml-libxslt perl-term-readline-gnu perl-term-readkey)
makedepends=(ninja cddlib lrs ppl apache-ant boost singular bliss-graphs)
2016-11-25 17:57:25 +00:00
optdepends=('singular: ideal library' 'ppl: polytope library' 'java-runtime: java module')
2018-01-30 00:46:06 +00:00
source=("https://polymake.org/lib/exe/fetch.php/download/polymake-$pkgver-minimal.tar.bz2")
sha256sums=('fc714cec2e6902b982fe6dc420e3e5a6e871efedbc402070812679c2faa83b2b')
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
2018-01-30 00:46:06 +00:00
sed -e 's|<lrslib.h>|<lrslib/lrslib.h>|g' -e 's|\$lrs_path\/include|$lrs_path/include/lrslib|g' -i bundled/lrs/support/configure.pl
2016-11-25 17:57:25 +00:00
}
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
}