postgresql: Use --without-readline in native build
[termux-packages] / packages / mosh / build.sh
CommitLineData
efd0d783 1TERMUX_PKG_HOMEPAGE=https://mosh.org
966a875d 2TERMUX_PKG_DESCRIPTION="Mobile shell that supports roaming and intelligent local echo"
a1424713
FF
3TERMUX_PKG_VERSION=1.3.0~rc2
4TERMUX_PKG_SRCURL=https://github.com/mobile-shell/mosh/releases/download/mosh-1.3.0-rc2/mosh-1.3.0-rc2.tar.gz
5TERMUX_PKG_SHA256=8b6bff33c469ccea0438877c68774a6b2ded6fccd99b1db180222da82f0654ae
6TERMUX_PKG_FOLDERNAME=mosh-1.3.0-rc2
2ff9e767 7TERMUX_PKG_DEPENDS="libandroid-support, libprotobuf, ncurses, openssl, openssh, libutil"
966a875d 8
2145cf90 9termux_step_pre_configure () {
2ff9e767 10 export PROTOC=$TERMUX_TOPDIR/libprotobuf/host-build/src/protoc
7ce56385 11
2145cf90
FF
12 cd $TERMUX_PKG_SRCDIR
13 ./autogen.sh
14}
bd033205
FF
15
16termux_step_post_make_install () {
99ea70c7 17 cd $TERMUX_PREFIX/bin
18 mv mosh mosh.pl
7ce56385
FF
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
bd033205 25}