mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-01-01 08:30:12 +00:00
48 lines
1.4 KiB
Bash
48 lines
1.4 KiB
Bash
TERMUX_PKG_HOMEPAGE=https://github.com/facebook/zstd
|
|
TERMUX_PKG_DESCRIPTION="Zstandard compression"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="@termux"
|
|
TERMUX_PKG_VERSION="1.5.6"
|
|
TERMUX_PKG_SRCURL=https://github.com/facebook/zstd/archive/v$TERMUX_PKG_VERSION.tar.gz
|
|
TERMUX_PKG_SHA256=30f35f71c1203369dc979ecde0400ffea93c27391bfd2ac5a9715d2173d92ff7
|
|
TERMUX_PKG_AUTO_UPDATE=true
|
|
TERMUX_PKG_DEPENDS="liblzma, zlib"
|
|
TERMUX_PKG_BREAKS="zstd-dev"
|
|
TERMUX_PKG_REPLACES="zstd-dev"
|
|
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
|
|
-Ddefault_library=both
|
|
-Dbin_programs=true
|
|
-Dbin_tests=false
|
|
-Dbin_contrib=true
|
|
-Dzlib=enabled
|
|
-Dlzma=enabled
|
|
-Dlz4=disabled
|
|
"
|
|
|
|
# Is this needed?
|
|
TERMUX_PKG_RM_AFTER_INSTALL="
|
|
bin/zstd-frugal
|
|
"
|
|
|
|
termux_step_pre_configure() {
|
|
TERMUX_PKG_SRCDIR+="/build/meson"
|
|
|
|
# SOVERSION suffix is needed for backward compatibility. Do not remove
|
|
# this (and the guard in the post-massage step) unless you know what
|
|
# you are doing. `zstd` is a dependency of `apt` to which something
|
|
# catastrophic could happen if you are careless.
|
|
export TERMUX_MESON_ENABLE_SOVERSION=1
|
|
}
|
|
|
|
termux_step_post_massage() {
|
|
# Do not forget to bump revision of reverse dependencies and rebuild them
|
|
# after SOVERSION is changed.
|
|
local _SOVERSION_GUARD_FILES="lib/libzstd.so.1"
|
|
local f
|
|
for f in ${_SOVERSION_GUARD_FILES}; do
|
|
if [ ! -e "${f}" ]; then
|
|
termux_error_exit "SOVERSION guard check failed."
|
|
fi
|
|
done
|
|
}
|