New package: palp-2.20
This commit is contained in:
parent
dae42f7ec8
commit
fe77279b3c
1 changed files with 50 additions and 0 deletions
50
srcpkgs/palp/template
Normal file
50
srcpkgs/palp/template
Normal file
|
@ -0,0 +1,50 @@
|
|||
# Template file for 'palp'
|
||||
pkgname=palp
|
||||
version=2.20
|
||||
revision=1
|
||||
build_style=gnu-makefile
|
||||
short_desc="Package for analyzing lattice polytopes"
|
||||
maintainer="Gonzalo Tornaría <tornaria@cmat.edu.uy>"
|
||||
license="GPL-3.0-only"
|
||||
homepage="http://hep.itp.tuwien.ac.at/~kreuzer/CY/CYpalp.html"
|
||||
distfiles="http://hep.itp.tuwien.ac.at/~kreuzer/CY/palp/palp-${version}.tar.gz"
|
||||
checksum=723e89e78b2d3d94a720dd770c11b932b3e6b56f8a49e0bf3621c776f7a02ce0
|
||||
|
||||
|
||||
# build procedure taken from sagemath, see
|
||||
# https://git.sagemath.org/sage.git/plain/build/pkgs/palp/spkg-install.in
|
||||
# https://github.com/archlinux/svntogit-community/blob/packages/palp/trunk/PKGBUILD
|
||||
do_build() {
|
||||
: ${make_cmd:=make}
|
||||
|
||||
mkdir bin
|
||||
mv Global.h Global.h-template
|
||||
|
||||
for dim in 4 5 6 11; do
|
||||
echo Building PALP optimized for $dim dimensions
|
||||
sed "s/^#define[^a-zA-Z]*POLY_Dmax.*/#define POLY_Dmax $dim/" Global.h-template > Global.h
|
||||
|
||||
${make_cmd} \
|
||||
CC="$CC" CXX="$CXX" LD="$LD" AR="$AR" RANLIB="$RANLIB" \
|
||||
CPP="$CPP" AS="$AS" OBJCOPY="$OBJCOPY" OBJDUMP="$OBJDUMP" \
|
||||
CFLAGS="$CFLAGS" CXXFLAGS="$CXXFLAGS" LDFLAGS="$LDFLAGS" \
|
||||
${makejobs} ${make_build_args} ${make_build_target}
|
||||
|
||||
for file in poly class cws nef mori; do
|
||||
mv ${file}.x bin/${file}-${dim}d.x
|
||||
done
|
||||
|
||||
# make sure we rebuild after changing Global.h to avoid races
|
||||
${make_cmd} cleanall
|
||||
done
|
||||
}
|
||||
|
||||
do_install() {
|
||||
for file in poly class cws nef mori; do
|
||||
for dim in 4 5 6 11; do
|
||||
vbin bin/${file}-${dim}d.x
|
||||
done
|
||||
# symlink for the default dimension
|
||||
ln -sf ${file}-6d.x ${DESTDIR}/usr/bin/${file}.x
|
||||
done
|
||||
}
|
Loading…
Reference in a new issue