s/TERMUX_PKG_BUILD_REVISION/TERMUX_PKG_REVISION/
[termux-packages] / packages / mosh / build.sh
1 TERMUX_PKG_HOMEPAGE=https://mosh.org
2 TERMUX_PKG_DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
3 TERMUX_PKG_VERSION=1.2.6
4 TERMUX_PKG_REVISION=1
5 TERMUX_PKG_SRCURL=https://github.com/mobile-shell/mosh/archive/mosh-${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_FOLDERNAME=mosh-mosh-$TERMUX_PKG_VERSION
7 TERMUX_PKG_DEPENDS="libandroid-support, protobuf, ncurses, openssl, openssh, libutil"
8
9 termux_step_pre_configure () {
10 export PROTOC=$TERMUX_TOPDIR/protobuf/host-build/src/protoc
11
12 cd $TERMUX_PKG_SRCDIR
13 ./autogen.sh
14 }
15
16 termux_step_post_make_install () {
17 cd $TERMUX_PREFIX/bin
18 mv mosh mosh.pl
19 $CXX $CXXFLAGS $LDFLAGS \
20 -isystem $TERMUX_PREFIX/include \
21 -lutil \
22 -DPACKAGE_VERSION=\"$TERMUX_PKG_VERSION\" \
23 -std=c++11 -Wall -Wextra -Werror \
24 $TERMUX_PKG_BUILDER_DIR/mosh.cc -o mosh
25 }