mirror of
https://github.com/termux-pacman/termux-packages.git
synced 2026-02-14 05:40:52 +00:00
termux/proot#334 (segfault during `dnf upgrade --refresh`, clone3 implementation cherry-picked from upstream)
34 lines
1.2 KiB
Bash
34 lines
1.2 KiB
Bash
# Contributor: @michalbednarski
|
|
TERMUX_PKG_HOMEPAGE=https://proot-me.github.io/
|
|
TERMUX_PKG_DESCRIPTION="Emulate chroot, bind mount and binfmt_misc for non-root users"
|
|
TERMUX_PKG_LICENSE="GPL-2.0"
|
|
TERMUX_PKG_MAINTAINER="Michal Bednarski @michalbednarski"
|
|
# Just bump commit and version when needed:
|
|
_COMMIT=4dba3afbf3a63af89b4d9c1a59bf2bda10f4d10f
|
|
TERMUX_PKG_VERSION=5.1.107
|
|
TERMUX_PKG_REVISION=70
|
|
TERMUX_PKG_SRCURL=https://github.com/termux/proot/archive/${_COMMIT}.zip
|
|
TERMUX_PKG_SHA256=a72668607184f981e44181bfa47f86ef52d52bb237b4012ee94f0dc89cb39211
|
|
TERMUX_PKG_AUTO_UPDATE=false
|
|
TERMUX_PKG_DEPENDS="libtalloc"
|
|
TERMUX_PKG_SUGGESTS="proot-distro"
|
|
TERMUX_PKG_BUILD_IN_SRC=true
|
|
TERMUX_PKG_EXTRA_MAKE_ARGS="-C src"
|
|
|
|
# Install loader in libexec instead of extracting it every time
|
|
export PROOT_UNBUNDLE_LOADER=$TERMUX_PREFIX/libexec/proot
|
|
|
|
termux_step_pre_configure() {
|
|
CPPFLAGS+=" -DARG_MAX=131072"
|
|
}
|
|
|
|
termux_step_post_make_install() {
|
|
mkdir -p $TERMUX_PREFIX/share/man/man1
|
|
install -m600 $TERMUX_PKG_SRCDIR/doc/proot/man.1 $TERMUX_PREFIX/share/man/man1/proot.1
|
|
|
|
sed -e "s|@TERMUX_PREFIX@|$TERMUX_PREFIX|g" \
|
|
$TERMUX_PKG_BUILDER_DIR/termux-chroot \
|
|
> $TERMUX_PREFIX/bin/termux-chroot
|
|
chmod 700 $TERMUX_PREFIX/bin/termux-chroot
|
|
}
|