autossh: Update from 1.4e to 1.4f
[termux-packages] / packages / dropbear / build.sh
index 953bcf7..c9780b5 100755 (executable)
@@ -1,17 +1,19 @@
 TERMUX_PKG_HOMEPAGE=https://matt.ucc.asn.au/dropbear/dropbear.html
 TERMUX_PKG_DESCRIPTION="Small SSH server and client"
 TERMUX_PKG_DEPENDS="libutil"
-TERMUX_PKG_VERSION=2015.68
-TERMUX_PKG_BUILD_REVISION=1
-# Using mirror since main site was down 2015-06-13:
-# TERMUX_PKG_SRCURL=https://matt.ucc.asn.au/dropbear/releases/dropbear-${TERMUX_PKG_VERSION}.tar.bz2
-TERMUX_PKG_SRCURL=https://dropbear.nl/mirror/dropbear-${TERMUX_PKG_VERSION}.tar.bz2
+TERMUX_PKG_VERSION=2017.75
+TERMUX_PKG_REVISION=2
+TERMUX_PKG_SRCURL=https://matt.ucc.asn.au/dropbear/releases/dropbear-${TERMUX_PKG_VERSION}.tar.bz2
+TERMUX_PKG_SHA256=6cbc1dcb1c9709d226dff669e5604172a18cf5dbf9a201474d5618ae4465098c
 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--disable-syslog --disable-utmp --disable-utmpx --disable-wtmp"
+# Avoid linking to libcrypt for server password authentication:
+TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_lib_crypt_crypt=no"
 TERMUX_PKG_EXTRA_MAKE_ARGS="MULTI=1"
 TERMUX_PKG_BUILD_IN_SRC="yes"
 
 termux_step_create_debscripts () {
-        echo "mkdir -p $TERMUX_PREFIX/etc/dropbear" >> postinst
+        echo "#!$TERMUX_PREFIX/bin/sh" > postinst
+       echo "mkdir -p $TERMUX_PREFIX/etc/dropbear" >> postinst
         echo "for a in rsa dss ecdsa; do" >> postinst
         echo "    KEYFILE=$TERMUX_PREFIX/etc/dropbear/dropbear_\${a}_host_key" >> postinst
         echo "    test ! -f \$KEYFILE && dropbearkey -t \$a -f \$KEYFILE" >> postinst