proot: Update for Linux >= 4.8 (#2374)
[termux-packages] / packages / proot / build.sh
CommitLineData
da62cd0f 1TERMUX_PKG_HOMEPAGE=https://proot-me.github.io/
6d461571 2TERMUX_PKG_DESCRIPTION="Emulate chroot, bind mount and binfmt_misc for non-root users"
115be236 3# Just bump commit and version when needed:
d73958ee 4_COMMIT=47138da843bbfcea2273a11ce9d83b40031465bf
4dc89268 5TERMUX_PKG_VERSION=5.1.107
d73958ee 6TERMUX_PKG_REVISION=7
115be236 7TERMUX_PKG_SRCURL=https://github.com/termux/proot/archive/${_COMMIT}.zip
d73958ee 8TERMUX_PKG_SHA256=0e6bdc043e13275a1d2d2377190d6f02823576f454ad81ce574884330458a0ce
f7690a8b
FF
9TERMUX_PKG_DEPENDS="libtalloc"
10
7ce56385
FF
11termux_step_pre_configure() {
12 export LD=$CC
17f61a47 13 CPPFLAGS+=" -DARG_MAX=131072"
7ce56385 14}
6d461571
FF
15
16termux_step_make_install () {
f7690a8b
FF
17 export CROSS_COMPILE=${TERMUX_HOST_PLATFORM}-
18
6d461571 19 cd $TERMUX_PKG_SRCDIR/src
f7690a8b 20 make V=1
6d461571 21 make install
f7690a8b
FF
22
23 mkdir -p $TERMUX_PREFIX/share/man/man1
24 cp $TERMUX_PKG_SRCDIR/doc/proot/man.1 $TERMUX_PREFIX/share/man/man1/proot.1
5a979ce6
FF
25
26 cp $TERMUX_PKG_BUILDER_DIR/termux-chroot $TERMUX_PREFIX/bin/
6d461571 27}