termux-packages/packages/gzip/build.sh
easyaspi314 (Devin) d3bf4f7621 gzip: hotfix for gnulib vasnprintf.c
Don't use %n in vasnprintf.c, it breaks things.

   $ gzip --version
   FORTIFY: %n not allowed on Android
   Aborted

See m4's issue in #4381.

This should be fixed in the next gzip release, though, as gnulib has
been updated in the master branch. However, for now, this will fix
things.
2020-04-06 02:50:26 +03:00

18 lines
569 B
Bash

TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/gzip/
TERMUX_PKG_DESCRIPTION="Standard GNU file compression utilities"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_VERSION=1.10
TERMUX_PKG_REVISION=3
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/gzip/gzip-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=8425ccac99872d544d4310305f915f5ea81e04d0f437ef1a230dc9d1c819d7c0
TERMUX_PKG_ESSENTIAL=true
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="ac_cv_path_GREP=grep"
termux_step_pre_configure() {
if [ $TERMUX_ARCH = i686 ]; then
# Avoid text relocations
export DEFS="NO_ASM"
fi
}