mirror of
https://github.com/termux/termux-packages.git
synced 2024-12-04 18:45:52 +00:00
542f9a9e9b
* Use source tarball from GitHub. * Enable auto update.
29 lines
988 B
Bash
29 lines
988 B
Bash
TERMUX_PKG_HOMEPAGE=https://www.zlib.net/
|
|
TERMUX_PKG_DESCRIPTION="Compression library implementing the deflate compression method found in gzip and PKZIP"
|
|
TERMUX_PKG_LICENSE="ZLIB"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.3.1"
|
|
TERMUX_PKG_SRCURL=https://github.com/madler/zlib/releases/download/v${TERMUX_PKG_VERSION}/zlib-${TERMUX_PKG_VERSION}.tar.xz
|
|
TERMUX_PKG_SHA256=38ef96b8dfe510d42707d9c781877914792541133e1870841463bfa73f883e32
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_BREAKS="ndk-sysroot (<< 19b-3), zlib-dev"
|
|
TERMUX_PKG_REPLACES="ndk-sysroot (<< 19b-3), zlib-dev"
|
|
|
|
termux_step_pre_configure() {
|
|
if [ "$TERMUX_ARCH" = "aarch64" ]; then
|
|
CFLAGS+=" -march=armv8-a+crc"
|
|
CXXFLAGS+=" -march=armv8-a+crc"
|
|
fi
|
|
|
|
# Fix relocation issues when linking with libz.a
|
|
CFLAGS+=" -fPIC"
|
|
CXXFLAGS+=" -fPIC"
|
|
|
|
# Fix linker script error for zlib 1.3
|
|
LDFLAGS+=" -Wl,--undefined-version"
|
|
}
|
|
|
|
termux_step_configure() {
|
|
"$TERMUX_PKG_SRCDIR/configure" --prefix=$TERMUX_PREFIX --shared
|
|
}
|