mirror of
https://github.com/archlinuxarm/PKGBUILDs.git
synced 2024-11-08 22:45:43 +00:00
39 lines
1.2 KiB
Bash
39 lines
1.2 KiB
Bash
# 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
|
|
pkgver=4.5
|
|
pkgrel=3
|
|
_perlver=`perl -e '$v = $^V->{version}; print $v->[0].".".($v->[1]).".".($v->[2]);'`
|
|
pkgdesc='Open source software for research in polyhedral geometry'
|
|
arch=(x86_64)
|
|
url='https://polymake.org/'
|
|
license=(GPL)
|
|
depends=(normaliz singular ppl lrs perl-xml-writer perl-xml-libxml perl-xml-libxslt
|
|
perl-term-readline-gnu perl-term-readkey perl-json sympol perl=$_perlver)
|
|
makedepends=(ninja cddlib ant boost bliss libnsl jdk8-openjdk permlib nauty)
|
|
optdepends=('java-runtime: java module')
|
|
source=(https://polymake.org/lib/exe/fetch.php/download/polymake-${pkgver/.r/r}-minimal.tar.bz2)
|
|
sha256sums=('e943d4bb31c112fad852340e3595bc591c2070692a16d50183a3b104566d7996')
|
|
|
|
build() {
|
|
cd polymake-$pkgver
|
|
./configure \
|
|
--prefix=/usr \
|
|
--with-cdd=/usr \
|
|
--with-lrs=/usr \
|
|
--with-permlib=/usr \
|
|
--with-sympol=/usr CXXOPT="-O1"
|
|
LDFLAGS+=" -Wl,--no-keep-memory -Wl,--reduce-memory-overheads"
|
|
make -j2
|
|
}
|
|
|
|
package() {
|
|
cd polymake-$pkgver
|
|
make DESTDIR="$pkgdir" install
|
|
}
|