setup-android-sdk.sh: Update from NDK r15 to r15b
[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:
b886e693 4_COMMIT=ccf3d7ab4804c1d01dd4d8f970da033a872c3152
5TERMUX_PKG_VERSION=5.1.106
edb2b68f 6TERMUX_PKG_REVISION=1
115be236 7TERMUX_PKG_SRCURL=https://github.com/termux/proot/archive/${_COMMIT}.zip
b886e693 8TERMUX_PKG_SHA256=16c2a450dae0c321c2b949bab322ebcd8bff4d78ce989ef3024f2235d2b7fbbf
115be236 9TERMUX_PKG_FOLDERNAME=proot-$_COMMIT
f7690a8b
FF
10TERMUX_PKG_DEPENDS="libtalloc"
11
7ce56385
FF
12termux_step_pre_configure() {
13 export LD=$CC
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}