Patch for busybox to accept + in emails (#760)
[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"
115be236 3# Just bump commit and version when needed:
596a5857
OS
4_COMMIT=9fc1f2db56712f1bee38b568f5d4cf862763fd88
5TERMUX_PKG_VERSION=5.1.102
115be236 6TERMUX_PKG_SRCURL=https://github.com/termux/proot/archive/${_COMMIT}.zip
9ddb35b2 7TERMUX_PKG_SHA256=719cf15807f81dd4c5911ce1955458a68f0d4b39a27fdfecdb4c1bef1f6c867d
115be236 8TERMUX_PKG_FOLDERNAME=proot-$_COMMIT
f7690a8b
FF
9TERMUX_PKG_DEPENDS="libtalloc"
10
7ce56385
FF
11termux_step_pre_configure() {
12 export LD=$CC
13}
6d461571
FF
14
15termux_step_make_install () {
f7690a8b
FF
16 export CROSS_COMPILE=${TERMUX_HOST_PLATFORM}-
17
6d461571 18 cd $TERMUX_PKG_SRCDIR/src
f7690a8b 19 make V=1
6d461571 20 make install
f7690a8b
FF
21
22 mkdir -p $TERMUX_PREFIX/share/man/man1
23 cp $TERMUX_PKG_SRCDIR/doc/proot/man.1 $TERMUX_PREFIX/share/man/man1/proot.1
5a979ce6
FF
24
25 cp $TERMUX_PKG_BUILDER_DIR/termux-chroot $TERMUX_PREFIX/bin/
6d461571 26}