0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-12 13:03:31 +00:00
Termux Github Actions 5c7c375ce4 bump(main/libtommath): 1.3.0
This commit has been automatically submitted by Github Actions.
2024-03-27 18:11:51 +00:00

33 lines
995 B
Bash

TERMUX_PKG_HOMEPAGE=https://www.libtom.net/LibTomMath/
TERMUX_PKG_DESCRIPTION="A free open source portable number theoretic multiple-precision integer library"
TERMUX_PKG_LICENSE="Unlicense"
TERMUX_PKG_LICENSE_FILE="LICENSE"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION="1.3.0"
TERMUX_PKG_SRCURL=https://github.com/libtom/libtommath/archive/refs/tags/v${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=6d099e93ff00fa9b18346f4bcd97dcc48c3e91286f7e16c4ac5515a7171c3149
TERMUX_PKG_AUTO_UPDATE=true
TERMUX_PKG_BUILD_IN_SRC=true
TERMUX_PKG_EXTRA_MAKE_ARGS="
-f makefile.shared
PREFIX=$TERMUX_PREFIX
"
termux_step_pre_configure() {
local libtooldir=$TERMUX_PKG_TMPDIR/_libtool
mkdir -p $libtooldir
pushd $libtooldir
cat > configure.ac <<-EOF
AC_INIT
LT_INIT
AC_OUTPUT
EOF
touch install-sh
cp "$TERMUX_SCRIPTDIR/scripts/config.sub" ./
cp "$TERMUX_SCRIPTDIR/scripts/config.guess" ./
autoreconf -fi
./configure --host=$TERMUX_HOST_PLATFORM
popd
export LIBTOOL=$libtooldir/libtool
}