mosh: Update from 1.2.6 to 1.3.0-rc2
[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.3.0~rc2
4 TERMUX_PKG_SRCURL=https://github.com/mobile-shell/mosh/releases/download/mosh-1.3.0-rc2/mosh-1.3.0-rc2.tar.gz
5 TERMUX_PKG_SHA256=8b6bff33c469ccea0438877c68774a6b2ded6fccd99b1db180222da82f0654ae
6 TERMUX_PKG_FOLDERNAME=mosh-1.3.0-rc2
7 TERMUX_PKG_DEPENDS="libandroid-support, libprotobuf, ncurses, openssl, openssh, libutil"
8
9 termux_step_pre_configure () {
10 export PROTOC=$TERMUX_TOPDIR/libprotobuf/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 }