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
|
2017-12-04 13:46:31 +00:00
|
|
|
pkgrel=5
|
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)
|
|
|
|
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)
|
2017-12-04 13:46:31 +00:00
|
|
|
makedepends=(normaliz 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')
|
2017-06-06 12:26:37 +00:00
|
|
|
source=("https://polymake.org/lib/exe/fetch.php/download/polymake-$pkgver-minimal.tar.bz2"
|
2017-12-04 13:46:31 +00:00
|
|
|
gcc7.patch polymake-no-znow.patch)
|
2017-06-06 12:26:37 +00:00
|
|
|
sha256sums=('f751e3c34e5ee3a015a99d1151b357130f15878c0bcea82827a19a12009e7fc0'
|
2017-12-04 13:46:31 +00:00
|
|
|
'e93c6d16a13b2701c999ff076fd6510f024b130cd47db2f86f096864b52ae37c'
|
|
|
|
'e56b49bfb60bdb2fc91d267efe09731f65d1f0a469322530bcc409b60fdb6578')
|
2016-11-25 17:57:25 +00:00
|
|
|
|
|
|
|
prepare() {
|
2017-03-29 13:43:32 +00:00
|
|
|
cd polymake-$pkgver
|
2017-06-06 12:26:37 +00:00
|
|
|
patch -Np0 -i ../gcc7.patch
|
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
|
2017-12-04 13:46:31 +00:00
|
|
|
# Fix undefined symbols
|
|
|
|
patch -p1 -i ../polymake-no-znow.patch
|
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"
|
2017-12-04 13:46:31 +00:00
|
|
|
export LDFLAGS=${LDFLAGS/,-z,now} # Fix undefined symbols
|
|
|
|
export CFLAGS=${CFLAGS/-fno-plt}
|
|
|
|
export CXXFLAGS=${CXXFLAGS/-fno-plt}
|
2016-11-25 17:57:25 +00:00
|
|
|
./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
|
|
|
|
}
|