# Description: secure shell server and client tools patched for higher performance # URL: http://www.openssh.org/ # Maintainer: #teatime (irc.kyber.io), teatime at kyber dot io # Depends on: openssl zlib name=openssh version=7.9p1-hpn14v17 release=1 source=(https://github.com/rapier1/openssh-portable/archive/hpn-7_9_P1.tar.gz openssl11.patch sshd) build() { cd openssh-portable-hpn-7_9_P1 patch < $SRC/openssl11.patch autoreconf -fi ./configure --prefix=/usr \ --libexecdir=/usr/lib/ssh \ --sysconfdir=/etc/ssh \ --with-mantype=man \ --mandir=/usr/share/man \ --with-md5-passwords \ --with-privsep-user=nobody \ --with-privsep-path=/var/empty \ --with-xauth=/usr/bin/xauth make make DESTDIR=$PKG install install -m 644 -D contrib/ssh-copy-id.1 $PKG/usr/share/man/man1/ssh-copy-id.1 install -m 755 -D contrib/ssh-copy-id $PKG/usr/bin/ssh-copy-id install -D -m 755 $SRC/sshd $PKG/etc/rc.d/sshd rm -rf $PKG/var }