libcln: Fix clang build - hopefully for real
[termux-packages] / packages / libcln / build.sh
1 TERMUX_PKG_HOMEPAGE=http://www.ginac.de/CLN/
2 TERMUX_PKG_DESCRIPTION="CLN is a library for efficient computations with all kinds of numbers in arbitrary precision"
3 TERMUX_PKG_VERSION=1.3.4
4 TERMUX_PKG_REVISION=1
5 TERMUX_PKG_SRCURL=http://www.ginac.de/CLN/cln-${TERMUX_PKG_VERSION}.tar.bz2
6 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-gnu-ld=no"
7 TERMUX_PKG_DEPENDS="libgmp"
8 TERMUX_PKG_BUILD_IN_SRC=yes
9
10 termux_step_pre_configure() {
11 if [ $TERMUX_ARCH = arm ]; then
12 # See the following section in INSTALL:
13 # "(*) On these platforms, problems with the assembler routines have been
14 # reported. It may be best to add "-DNO_ASM" to CPPFLAGS before configuring."
15 CPPFLAGS+=" -DNO_ASM"
16 fi
17
18 cd $TERMUX_PKG_SRCDIR
19 sed -i -e 's%tests/Makefile %%' configure.ac
20 sed -i -e 's%examples/Makefile %%' configure.ac
21 sed -i -e 's%benchmarks/Makefile %%' configure.ac
22
23 autoreconf
24 }
25
26 termux_step_post_configure() {
27 cd $TERMUX_PKG_SRCDIR
28 sed -i -e 's% tests%%' Makefile
29 sed -i -e 's% examples%%' Makefile
30 sed -i -e 's% benchmarks%%' Makefile
31 }