proot: Build without -mthumb as it causes segfault
[termux-packages] / packages / proot / build.sh
1 TERMUX_PKG_HOMEPAGE=http://proot.me/
2 TERMUX_PKG_DESCRIPTION="Emulate chroot, bind mount and binfmt_misc for non-root users"
3 # Just bump commit and version when needed:
4 _COMMIT=9fc1f2db56712f1bee38b568f5d4cf862763fd88
5 TERMUX_PKG_VERSION=5.1.103
6 TERMUX_PKG_SRCURL=https://github.com/termux/proot/archive/${_COMMIT}.zip
7 TERMUX_PKG_SHA256=719cf15807f81dd4c5911ce1955458a68f0d4b39a27fdfecdb4c1bef1f6c867d
8 TERMUX_PKG_FOLDERNAME=proot-$_COMMIT
9 TERMUX_PKG_DEPENDS="libtalloc"
10
11 termux_step_pre_configure() {
12 export LD=$CC
13 if [ $TERMUX_ARCH=arm ]; then
14 # XXX: Building with -mthumb, which Termux does by
15 # default on arm, see:
16 # https://github.com/termux/termux-packages/issues/761
17 CFLAGS="${CFLAGS/-mthumb/}"
18 fi
19 }
20
21 termux_step_make_install () {
22 export CROSS_COMPILE=${TERMUX_HOST_PLATFORM}-
23
24 cd $TERMUX_PKG_SRCDIR/src
25 make V=1
26 make install
27
28 mkdir -p $TERMUX_PREFIX/share/man/man1
29 cp $TERMUX_PKG_SRCDIR/doc/proot/man.1 $TERMUX_PREFIX/share/man/man1/proot.1
30
31 cp $TERMUX_PKG_BUILDER_DIR/termux-chroot $TERMUX_PREFIX/bin/
32 }