proot: Expose /storage in termux-chroot
[termux-packages] / packages / proot / build.sh
CommitLineData
6d461571
FF
1TERMUX_PKG_HOMEPAGE=http://proot.me/
2TERMUX_PKG_DESCRIPTION="Emulate chroot, bind mount and binfmt_misc for non-root users"
c491cc49 3TERMUX_PKG_VERSION=5.1.100
53372a3c
FF
4TERMUX_PKG_SRCURL=https://github.com/proot-me/PRoot/archive/next.zip
5TERMUX_PKG_FOLDERNAME=PRoot-next
f7690a8b
FF
6TERMUX_PKG_DEPENDS="libtalloc"
7
8export LD=$CC
6d461571
FF
9
10termux_step_make_install () {
f7690a8b
FF
11 export CROSS_COMPILE=${TERMUX_HOST_PLATFORM}-
12
6d461571 13 cd $TERMUX_PKG_SRCDIR/src
f7690a8b 14 make V=1
6d461571 15 make install
f7690a8b
FF
16
17 mkdir -p $TERMUX_PREFIX/share/man/man1
18 cp $TERMUX_PKG_SRCDIR/doc/proot/man.1 $TERMUX_PREFIX/share/man/man1/proot.1
5a979ce6
FF
19
20 cp $TERMUX_PKG_BUILDER_DIR/termux-chroot $TERMUX_PREFIX/bin/
6d461571 21}