libgcrypt: Revert from 1.7.4 to 1.7.3
[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_SRCURL=http://www.ginac.de/CLN/cln-${TERMUX_PKG_VERSION}.tar.bz2
5 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-gnu-ld=no"
6 TERMUX_PKG_DEPENDS="libgmp"
7 TERMUX_PKG_BUILD_IN_SRC=yes
8
9 termux_step_pre_configure() {
10 if [ $TERMUX_ARCH = arm ]; then
11 # See the following section in INSTALL:
12 # "(*) On these platforms, problems with the assembler routines have been
13 # reported. It may be best to add "-DNO_ASM" to CPPFLAGS before configuring."
14 CPPFLAGS+=" -DNO_ASM"
15 fi
16
17 cd $TERMUX_PKG_SRCDIR
18 sed -i -e 's%tests/Makefile %%' configure.ac
19 sed -i -e 's%examples/Makefile %%' configure.ac
20 sed -i -e 's%benchmarks/Makefile %%' configure.ac
21
22 autoreconf
23 }
24
25 termux_step_post_configure() {
26 cd $TERMUX_PKG_SRCDIR
27 sed -i -e 's% tests%%' Makefile
28 sed -i -e 's% examples%%' Makefile
29 sed -i -e 's% benchmarks%%' Makefile
30 }