automake: Update from 1.15 to 1.15.1
[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:
4480f511 4_COMMIT=58d216143b81558d71bcb29686cfa9ab1bfe3f4b
5TERMUX_PKG_VERSION=5.1.105
edb2b68f 6TERMUX_PKG_REVISION=1
115be236 7TERMUX_PKG_SRCURL=https://github.com/termux/proot/archive/${_COMMIT}.zip
4480f511 8TERMUX_PKG_SHA256=a2e33023d32d1a107be66d95b7411f98e19b2ddb3f440947cf220244d453918e
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}