PKGBUILDs/extra/polymake/PKGBUILD

76 lines
1.8 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
2023-11-07 00:25:45 +00:00
pkgver=4.11
2024-02-28 20:16:59 +00:00
pkgrel=7
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)
2023-11-07 00:25:45 +00:00
depends=(bliss
cddlib
e-antic
flint
gcc-libs
glibc
gmp
lrs
mpfr
normaliz
perl=$_perlver
perl-json
perl-term-readkey
perl-term-readline-gnu
perl-xml-libxml
perl-xml-libxslt
perl-xml-writer
ppl
scip
singular
sympol
zlib)
makedepends=(ant
boost
jdk-openjdk
libnsl
nauty
ninja
permlib
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-11-07 00:25:45 +00:00
sha256sums=('5df6f0acd700119bd0c4b5766762852ffbd857765b5dcc88802ff5d2108add23')
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
}