3f39da794f89fdc745ddc632681d3011dc513bda
[termux-packages] / packages / openssh / build.sh
1 TERMUX_PKG_HOMEPAGE=https://www.openssh.com/
2 TERMUX_PKG_DESCRIPTION="Secure shell for logging into a remote machine"
3 TERMUX_PKG_VERSION=7.5p1
4 TERMUX_PKG_REVISION=8
5 TERMUX_PKG_SRCURL=http://mirrors.evowise.com/pub/OpenBSD/OpenSSH/portable/openssh-${TERMUX_PKG_VERSION}.tar.gz
6 TERMUX_PKG_SHA256=9846e3c5fab9f0547400b4d2c017992f914222b3fd1f8eee6c7dc6bc5e59f9f0
7 TERMUX_PKG_DEPENDS="libandroid-support, ldns, openssl, libedit, libutil"
8 # --disable-strip to prevent host "install" command to use "-s", which won't work for target binaries:
9 TERMUX_PKG_EXTRA_CONFIGURE_ARGS="
10 --disable-etc-default-login
11 --disable-lastlog
12 --disable-libutil
13 --disable-pututline
14 --disable-pututxline
15 --disable-strip
16 --disable-utmp
17 --disable-utmpx
18 --disable-wtmp
19 --disable-wtmpx
20 --sysconfdir=$TERMUX_PREFIX/etc/ssh
21 --with-cflags=-Dfd_mask=int
22 --with-ldns
23 --with-libedit
24 --without-ssh1
25 --without-stackprotect
26 --with-pid-dir=$TERMUX_PREFIX/var/run
27 --with-privsep-path=$TERMUX_PREFIX/var/empty
28 --with-xauth=$TERMUX_PREFIX/bin/xauth
29 ac_cv_func_endgrent=yes
30 ac_cv_func_fmt_scaled=no
31 ac_cv_func_getlastlogxbyname=no
32 ac_cv_func_readpassphrase=no
33 ac_cv_func_strnvis=no
34 ac_cv_header_sys_un_h=yes
35 ac_cv_search_getrrsetbyname=no
36 "
37 TERMUX_PKG_MAKE_INSTALL_TARGET="install-nokeys"
38 TERMUX_PKG_RM_AFTER_INSTALL="bin/slogin share/man/man1/slogin.1"
39
40 termux_step_pre_configure() {
41 autoreconf
42
43 ## Configure script require this variable to set
44 ## prefixed path to program 'passwd'
45 export PATH_PASSWD_PROG="${TERMUX_PREFIX}/bin/passwd"
46
47 CPPFLAGS+=" -DHAVE_ATTRIBUTE__SENTINEL__=1"
48 LD=$CC # Needed to link the binaries
49 LDFLAGS+=" -llog" # liblog for android logging in syslog hack
50 }
51
52 termux_step_post_configure() {
53 # We need to remove this file before installing, since otherwise the
54 # install leaves it alone which means no updated timestamps.
55 rm -Rf $TERMUX_PREFIX/etc/moduli
56 }
57
58 termux_step_post_make_install () {
59 # "PrintMotd no" is due to our login program already showing it.
60 # OpenSSH 7.0 disabled ssh-dss by default, keep it for a while in Termux:
61 echo -e "PrintMotd no\nPasswordAuthentication no\nPubkeyAcceptedKeyTypes +ssh-dss\nSubsystem sftp $TERMUX_PREFIX/libexec/sftp-server" > $TERMUX_PREFIX/etc/ssh/sshd_config
62 echo "PubkeyAcceptedKeyTypes +ssh-dss" > $TERMUX_PREFIX/etc/ssh/ssh_config
63 cp $TERMUX_PKG_BUILDER_DIR/source-ssh-agent.sh $TERMUX_PREFIX/bin/source-ssh-agent
64 cp $TERMUX_PKG_BUILDER_DIR/ssh-with-agent.sh $TERMUX_PREFIX/bin/ssha
65
66 # Install ssh-copy-id:
67 cp $TERMUX_PKG_SRCDIR/contrib/ssh-copy-id.1 $TERMUX_PREFIX/share/man/man1/
68 cp $TERMUX_PKG_SRCDIR/contrib/ssh-copy-id $TERMUX_PREFIX/bin/
69 chmod +x $TERMUX_PREFIX/bin/ssh-copy-id
70
71 mkdir -p $TERMUX_PREFIX/var/run
72 echo "OpenSSH needs this folder to put sshd.pid in" >> $TERMUX_PREFIX/var/run/README.openssh
73
74 mkdir -p $TERMUX_PREFIX/etc/ssh/
75 cp $TERMUX_PKG_SRCDIR/moduli $TERMUX_PREFIX/etc/ssh/moduli
76 }
77
78 termux_step_create_debscripts () {
79 echo "#!$TERMUX_PREFIX/bin/sh" > postinst
80 echo "mkdir -p \$HOME/.ssh" >> postinst
81 echo "touch \$HOME/.ssh/authorized_keys" >> postinst
82 echo "chmod 700 \$HOME/.ssh" >> postinst
83 echo "chmod 600 \$HOME/.ssh/authorized_keys" >> postinst
84 echo "" >> postinst
85 echo "for a in rsa dsa ecdsa ed25519; do" >> postinst
86 echo " KEYFILE=$TERMUX_PREFIX/etc/ssh/ssh_host_\${a}_key" >> postinst
87 echo " test ! -f \$KEYFILE && ssh-keygen -N '' -t \$a -f \$KEYFILE" >> postinst
88 echo "done" >> postinst
89 echo "exit 0" >> postinst
90 chmod 0755 postinst
91 }