0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-12 14:13:36 +00:00
Fredrik Fornwall de6a0672b0 bump(main/libcln): 1.3.7
Fixes old 1.3.6 src url no longer working.
2024-05-15 15:27:43 +02:00

43 lines
1.4 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://www.ginac.de/CLN/
TERMUX_PKG_DESCRIPTION="CLN is a library for efficient computations with all kinds of numbers in arbitrary precision"
TERMUX_PKG_LICENSE="GPL-2.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.3.7
TERMUX_PKG_SRCURL=https://www.ginac.de/CLN/cln-${TERMUX_PKG_VERSION}.tar.bz2
TERMUX_PKG_SHA256=7c7ed8474958337e4df5bb57ea5176ad0365004cbb98b621765bc4606a10d86b
TERMUX_PKG_DEPENDS="libc++, libgmp"
TERMUX_PKG_BREAKS="libcln-dev"
TERMUX_PKG_REPLACES="libcln-dev"
TERMUX_PKG_BUILD_IN_SRC=true
termux_step_pre_configure() {
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"
CXXFLAGS+=" -fintegrated-as"
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
LDFLAGS+=" $($CC -print-libgcc-file-name)"
}
termux_step_post_configure() {
cd $TERMUX_PKG_SRCDIR
sed -i -e 's% tests%%' Makefile
sed -i -e 's% examples%%' Makefile
sed -i -e 's% benchmarks%%' Makefile
sed -i -e '/^#error /d' \
-e 's/^\(#define int_bitsize\) .*$/\1 32/' \
-e 's/^\(#define long_bitsize\) .*$/\1 '$TERMUX_ARCH_BITS'/' \
-e 's/^\(#define long_long_bitsize\) .*$/\1 64/' \
include/cln/intparam.h
}