Bump proot build revision for package update
[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
42aaa8bf 4TERMUX_PKG_BUILD_REVISION=1
53372a3c
FF
5TERMUX_PKG_SRCURL=https://github.com/proot-me/PRoot/archive/next.zip
6TERMUX_PKG_FOLDERNAME=PRoot-next
f7690a8b
FF
7TERMUX_PKG_DEPENDS="libtalloc"
8
9export LD=$CC
6d461571
FF
10
11termux_step_make_install () {
f7690a8b
FF
12 export CROSS_COMPILE=${TERMUX_HOST_PLATFORM}-
13
6d461571 14 cd $TERMUX_PKG_SRCDIR/src
f7690a8b 15 make V=1
6d461571 16 make install
f7690a8b
FF
17
18 mkdir -p $TERMUX_PREFIX/share/man/man1
19 cp $TERMUX_PKG_SRCDIR/doc/proot/man.1 $TERMUX_PREFIX/share/man/man1/proot.1
5a979ce6
FF
20
21 cp $TERMUX_PKG_BUILDER_DIR/termux-chroot $TERMUX_PREFIX/bin/
6d461571 22}