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