radare2: Update from 1.0.2 to 1.1.0
[termux-packages] / packages / openssh / build.sh
CommitLineData
59f0d218
FF
1TERMUX_PKG_HOMEPAGE=http://www.openssh.com/
2TERMUX_PKG_DESCRIPTION="Secure shell for logging into a remote machine"
fd2a269e 3TERMUX_PKG_VERSION=7.3p1
955627f6 4TERMUX_PKG_BUILD_REVISION=1
fd2a269e 5TERMUX_PKG_SRCURL=http://mirrors.mit.edu/pub/OpenBSD/OpenSSH/portable/openssh-${TERMUX_PKG_VERSION}.tar.gz
e239964b 6TERMUX_PKG_SHA256=3ffb989a6dcaa69594c3b550d4855a5a2e1718ccdde7f5e36387b424220fbecc
59f0d218
FF
7TERMUX_PKG_DEPENDS="libandroid-support, ldns, openssl"
8# --disable-strip to prevent host "install" command to use "-s", which won't work for target binaries:
9TERMUX_PKG_EXTRA_CONFIGURE_ARGS="--with-cflags=-Dfd_mask=int --with-ldns --disable-etc-default-login --disable-lastlog --disable-utmp --disable-utmpx --disable-wtmp --disable-wtmpx --disable-libutil --disable-pututline --disable-pututxline --without-stackprotect --with-pid-dir=$TERMUX_PREFIX/var/run --disable-strip --sysconfdir=$TERMUX_PREFIX/etc/ssh --without-ssh1"
10TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" ac_cv_header_sys_un_h=yes ac_cv_func_strnvis=no ac_cv_func_readpassphrase=no ac_cv_search_getrrsetbyname=no ac_cv_func_getlastlogxbyname=no ac_cv_func_fmt_scaled=no ac_cv_func_endgrent=yes"
1d905446 11TERMUX_PKG_EXTRA_CONFIGURE_ARGS+=" --disable-libutil ac_cv_search_openpty=no --with-privsep-path=$TERMUX_PREFIX/var/empty"
59f0d218
FF
12TERMUX_PKG_MAKE_INSTALL_TARGET="install-nokeys"
13TERMUX_PKG_RM_AFTER_INSTALL="bin/slogin share/man/man1/slogin.1"
14
7ce56385
FF
15termux_step_pre_configure() {
16 LD=$CC # Needed to link the binaries
17 LDFLAGS+=" -llog" # liblog for android logging in syslog hack
18}
59f0d218
FF
19
20termux_step_pre_make () {
21 # We need to remove this file before installing, since otherwise the
22 # install leaves it alone which means no updated timestamps.
23 rm -Rf $TERMUX_PREFIX/etc/moduli
24}
25
26termux_step_post_make_install () {
62c37b97 27 # OpenSSH 7.0 disabled ssh-dss by default, keep it for a while in Termux:
d8052afc 28 echo -e "PasswordAuthentication no\nUsePrivilegeSeparation no\nPubkeyAcceptedKeyTypes +ssh-dss\nSubsystem sftp $TERMUX_PREFIX/libexec/sftp-server" > $TERMUX_PREFIX/etc/ssh/sshd_config
62c37b97 29 echo "PubkeyAcceptedKeyTypes +ssh-dss" > $TERMUX_PREFIX/etc/ssh/ssh_config
59f0d218
FF
30 cp $TERMUX_PKG_BUILDER_DIR/source-ssh-agent.sh $TERMUX_PREFIX/bin/source-ssh-agent
31 cp $TERMUX_PKG_BUILDER_DIR/ssh-with-agent.sh $TERMUX_PREFIX/bin/ssha
32
b0c457ae
FF
33 # Install ssh-copy-id:
34 cp $TERMUX_PKG_SRCDIR/contrib/ssh-copy-id.1 $TERMUX_PREFIX/share/man/man1/
35 cp $TERMUX_PKG_SRCDIR/contrib/ssh-copy-id $TERMUX_PREFIX/bin/
36 chmod +x $TERMUX_PREFIX/bin/ssh-copy-id
37
59f0d218
FF
38 mkdir -p $TERMUX_PREFIX/var/run
39 echo "OpenSSH needs this folder to put sshd.pid in" >> $TERMUX_PREFIX/var/run/README.openssh
40
41 mkdir -p $TERMUX_PREFIX/etc/ssh/
42 cp $TERMUX_PKG_SRCDIR/moduli $TERMUX_PREFIX/etc/ssh/moduli
43}
44
45termux_step_create_debscripts () {
46 echo "mkdir -p \$HOME/.ssh" > postinst
47 echo "" >> postinst
48 echo "for a in rsa dsa ecdsa ed25519; do" >> postinst
49 echo " KEYFILE=$TERMUX_PREFIX/etc/ssh/ssh_host_\${a}_key" >> postinst
50 echo " test ! -f \$KEYFILE && ssh-keygen -N '' -t \$a -f \$KEYFILE" >> postinst
51 echo "done" >> postinst
52 echo "exit 0" >> postinst
53 chmod 0755 postinst
54}