2018-05-25 12:38:52 +02:00
|
|
|
TERMUX_PKG_HOMEPAGE=https://www.ginac.de/CLN/
|
2016-09-08 15:23:31 +02:00
|
|
|
TERMUX_PKG_DESCRIPTION="CLN is a library for efficient computations with all kinds of numbers in arbitrary precision"
|
2019-01-21 13:53:58 +01:00
|
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
2016-09-08 15:23:31 +02:00
|
|
|
TERMUX_PKG_VERSION=1.3.4
|
2019-02-23 12:38:12 +01:00
|
|
|
TERMUX_PKG_REVISION=4
|
2018-09-15 03:42:43 +02:00
|
|
|
TERMUX_PKG_SRCURL=https://fossies.org/linux/privat/cln-$TERMUX_PKG_VERSION.tar.xz
|
|
|
|
TERMUX_PKG_SHA256=c32e59b6afbcf8b84075ab454c42982429c6ea9675aee2bbda176cb85293e38f
|
2016-09-08 21:35:37 +02:00
|
|
|
TERMUX_PKG_DEPENDS="libgmp"
|
2016-09-08 15:23:31 +02:00
|
|
|
TERMUX_PKG_BUILD_IN_SRC=yes
|
|
|
|
|
|
|
|
termux_step_pre_configure() {
|
2016-09-08 17:00:56 +02:00
|
|
|
if [ $TERMUX_ARCH = arm ]; then
|
|
|
|
# See the following section in INSTALL:
|
|
|
|
# "(*) On these platforms, problems with the assembler routines have been
|
|
|
|
# reported. It may be best to add "-DNO_ASM" to CPPFLAGS before configuring."
|
|
|
|
CPPFLAGS+=" -DNO_ASM"
|
2018-05-30 01:06:26 +02:00
|
|
|
CXXFLAGS+=" -fintegrated-as"
|
2016-09-08 17:00:56 +02:00
|
|
|
fi
|
|
|
|
|
|
|
|
sed -i -e 's%tests/Makefile %%' configure.ac
|
|
|
|
sed -i -e 's%examples/Makefile %%' configure.ac
|
|
|
|
sed -i -e 's%benchmarks/Makefile %%' configure.ac
|
|
|
|
|
|
|
|
autoreconf
|
2016-09-08 15:23:31 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
termux_step_post_configure() {
|
2016-09-08 17:00:56 +02:00
|
|
|
cd $TERMUX_PKG_SRCDIR
|
|
|
|
sed -i -e 's% tests%%' Makefile
|
|
|
|
sed -i -e 's% examples%%' Makefile
|
|
|
|
sed -i -e 's% benchmarks%%' Makefile
|
|
|
|
}
|