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
|
2023-06-12 19:07:22 +00:00
|
|
|
pkgver=4.10
|
|
|
|
pkgrel=1
|
2020-06-27 14:23:06 +00:00
|
|
|
_perlver=`perl -e '$v = $^V->{version}; print $v->[0].".".($v->[1]).".".($v->[2]);'`
|
2021-05-18 16:00:29 +00:00
|
|
|
pkgdesc='Open source software for research in polyhedral geometry'
|
2017-12-04 13:46:31 +00:00
|
|
|
arch=(x86_64)
|
2021-05-18 16:00:29 +00:00
|
|
|
url='https://polymake.org/'
|
2016-11-25 17:57:25 +00:00
|
|
|
license=(GPL)
|
2019-11-20 01:27:02 +00:00
|
|
|
depends=(normaliz singular ppl lrs perl-xml-writer perl-xml-libxml perl-xml-libxslt
|
2023-01-30 00:52:45 +00:00
|
|
|
perl-term-readline-gnu perl-term-readkey perl-json sympol scip perl=$_perlver)
|
|
|
|
makedepends=(ninja cddlib ant boost bliss libnsl jdk-openjdk permlib nauty soplex)
|
2018-03-09 13:45:30 +00:00
|
|
|
optdepends=('java-runtime: java module')
|
2022-07-17 18:29:07 +00:00
|
|
|
source=(https://polymake.org/lib/exe/fetch.php/download/polymake-${pkgver/.r/r}-minimal.tar.bz2)
|
2023-06-12 19:07:22 +00:00
|
|
|
sha256sums=('6038b266d6d40bbe9955ede846dccf4417e4114faa87e775656161cd4ca2f8f8')
|
2016-11-25 17:57:25 +00:00
|
|
|
|
2023-01-30 00:52:45 +00:00
|
|
|
prepare() {
|
|
|
|
sed -e 's|-lgmp|-lgmp -lmpfr|g' -i polymake-$pkgver/bundled/soplex/support/configure.pl # Fix soplex linking
|
|
|
|
}
|
|
|
|
|
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 \
|
2023-01-30 00:52:45 +00:00
|
|
|
--without-native \
|
2020-01-30 01:09:26 +00:00
|
|
|
--with-cdd=/usr \
|
|
|
|
--with-lrs=/usr \
|
|
|
|
--with-permlib=/usr \
|
2023-01-30 00:52:45 +00:00
|
|
|
--with-soplex=/usr \
|
2020-01-30 01:09:26 +00:00
|
|
|
--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
|
2023-01-30 00:52:45 +00:00
|
|
|
|
|
|
|
# Executables are installed in mode 555, which breaks strip
|
|
|
|
find "$pkgdir" -exec chmod u+w {} +
|
2016-11-25 17:57:25 +00:00
|
|
|
}
|