Files
termux-packages/packages/tar/build.sh
termux-pacman-bot 62c7430b4f fix(main/tar): enable ACLs and SELinux
- Fixes https://github.com/termux/termux-packages/issues/21267

- Tested to work by making the warnings `tar: POSIX ACL support is not available` and `tar: SELinux support is not available`  disappear without errors
2025-12-08 11:37:39 +00:00

30 lines
1.3 KiB
Bash

TERMUX_PKG_HOMEPAGE=https://www.gnu.org/software/tar/
TERMUX_PKG_DESCRIPTION="GNU tar for manipulating tar archives"
TERMUX_PKG_LICENSE="GPL-3.0"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=1.35
TERMUX_PKG_REVISION=2
TERMUX_PKG_SRCURL=https://mirrors.kernel.org/gnu/tar/tar-${TERMUX_PKG_VERSION}.tar.xz
TERMUX_PKG_SHA256=4d62ff37342ec7aed748535323930c7cf94acf71c3591882b26a7ea50f3edc16
TERMUX_PKG_DEPENDS="libacl, libandroid-glob, libandroid-selinux, libiconv"
TERMUX_PKG_ESSENTIAL=true
# When cross-compiling configure guesses that d_ino in struct dirent only exists
# if triplet matches linux*-gnu*, so we force set it explicitly:
TERMUX_PKG_EXTRA_CONFIGURE_ARGS="gl_cv_struct_dirent_d_ino=yes"
# this needed to disable tar's implementation of mkfifoat() so it is possible
# to use own implementation (see patch 'mkfifoat.patch').
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_func_mkfifoat=yes"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --enable-acl"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-posix-acls"
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --with-selinux"
termux_step_pre_configure() {
CPPFLAGS+=" -D__USE_FORTIFY_LEVEL=0"
LDFLAGS+=" -landroid-glob"
# https://android.googlesource.com/platform/bionic/+/master/docs/32-bit-abi.md#is-32_bit-on-lp32-y2038
if [ $TERMUX_ARCH_BITS = 32 ]; then
TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-year2038"
fi
}