2b65c759fa
* Added arguments for proot to enable the use of MagiskSU from within termux-chroot. * Restore original shebang to termux-chroot for pull-request. * Added folder existence check to ensure MagiskSU changes don't break termux-chroot on later versions of Android, just in case. * proot: Update for accept -> accept4 translation
28 lines
856 B
Bash
28 lines
856 B
Bash
TERMUX_PKG_HOMEPAGE=https://proot-me.github.io/
|
|
TERMUX_PKG_DESCRIPTION="Emulate chroot, bind mount and binfmt_misc for non-root users"
|
|
# Just bump commit and version when needed:
|
|
_COMMIT=c24fa3a43af2336a93f63fe3fb3eac599f0e3592
|
|
TERMUX_PKG_VERSION=5.1.107
|
|
TERMUX_PKG_REVISION=6
|
|
TERMUX_PKG_SRCURL=https://github.com/termux/proot/archive/${_COMMIT}.zip
|
|
TERMUX_PKG_SHA256=185e01d02a0bbf93036d143500e747e06b95fa6056fc1b8c1a093764b467e5b8
|
|
TERMUX_PKG_DEPENDS="libtalloc"
|
|
|
|
termux_step_pre_configure() {
|
|
export LD=$CC
|
|
CPPFLAGS+=" -DARG_MAX=131072"
|
|
}
|
|
|
|
termux_step_make_install () {
|
|
export CROSS_COMPILE=${TERMUX_HOST_PLATFORM}-
|
|
|
|
cd $TERMUX_PKG_SRCDIR/src
|
|
make V=1
|
|
make install
|
|
|
|
mkdir -p $TERMUX_PREFIX/share/man/man1
|
|
cp $TERMUX_PKG_SRCDIR/doc/proot/man.1 $TERMUX_PREFIX/share/man/man1/proot.1
|
|
|
|
cp $TERMUX_PKG_BUILDER_DIR/termux-chroot $TERMUX_PREFIX/bin/
|
|
}
|