# Based on Arch PKGBUILD + BLFS
pkgname=openssh
pkgver=9.8p1
pkgrel=1
pkgdesc="SSH protocol implementation for remote login, command execution and file transfer"
arch=("armv7h" 'aarch64')
url='https://www.openssh.com/portable.html'
license=(
BSD-2-Clause
BSD-3-Clause
ISC
LicenseRef-Public-Domain
MIT
)
depends=(
glibc
)
makedepends=(
libxcrypt
linux-headers
openssl
zlib
)
backup=(
etc/pam.d/sshd
etc/ssh/ssh_config
etc/ssh/sshd_config
)
source=(
https://ftp.openbsd.org/pub/OpenBSD/OpenSSH/portable/$pkgname-$pkgver.tar.gz{,.asc}
$pkgname.tmpfiles
sshdgenkeys.service
sshd.service
ssh-agent.service
sshd.pam
)
prepare() {
cd $pkgname-$pkgver
# remove variable (but useless) first line in config (related to upstream VCS)
sed '/^#.*\$.*\$$/d' -i ssh{,d}_config
# prepend configuration option to include drop-in configuration files for sshd_config
printf "# Include drop-in configurations\nInclude /etc/ssh/sshd_config.d/*.conf\n" | cat - sshd_config > sshd_config.tmp
mv -v sshd_config.tmp sshd_config
# prepend configuration option to include drop-in configuration files for ssh_config
printf "# Include drop-in configurations\nInclude /etc/ssh/ssh_config.d/*.conf\n" | cat - ssh_config > ssh_config.tmp
mv -v ssh_config.tmp ssh_config
# extract separate licenses
sed -n '89,113p' LICENCE > ../rijndael.Public-Domain.txt
sed -n '116,145p' LICENCE > ../ssh.BSD-3-Clause.txt
sed -n '148,209p' LICENCE > ../BSD-2-Clause.txt
sed -n '213,218p' LICENCE > ../snprintf.Public-Domain.txt
sed -n '222,258p' LICENCE > ../openbsd-compat.BSD-3-Clause.txt
sed -n '260,278p' LICENCE > ../openbsd-compat.ISC.txt
sed -n '280,308p' LICENCE > ../openbsd-compat.MIT.txt
sed -n '280,308p' LICENCE > ../openbsd-compat.MIT.txt
sed -n '310,338p' LICENCE > ../blowfish.BSD-3-Clause.txt
sed -n '340,368p' LICENCE > ../replacement.BSD-2-Clause.txt
}
build() {
local configure_options=(
--prefix=/usr
--sysconfdir=/etc/ssh
--disable-strip
--with-ssl-engine
--with-privsep-user=nobody
--with-pid-dir=/run
--with-default-path='/usr/local/sbin:/usr/local/bin:/usr/bin'
--with-superuser-path=/usr/sbin:/usr/bin
--without-zlib-version-check
)
cd $pkgname-$pkgver
./configure "${configure_options[@]}"
make
}
package() {
depends+=(
openssl
zlib
)
cd $pkgname-$pkgver
make DESTDIR="$pkgdir" install
install -vdm 755 "$pkgdir/etc/ssh/ssh_config.d"
install -Dm644 LICENCE -t "$pkgdir/usr/share/licenses/$pkgname/"
install -Dm644 ../*.txt -t "$pkgdir/usr/share/licenses/$pkgname/"
install -Dm644 ../sshdgenkeys.service -t "$pkgdir"/usr/lib/systemd/system/
install -Dm644 ../sshd.service -t "$pkgdir"/usr/lib/systemd/system/
install -Dm644 ../ssh-agent.service -t "$pkgdir"/usr/lib/systemd/user/
install -Dm644 ../sshd.pam "$pkgdir"/etc/pam.d/sshd
# factory files
install -Dm644 ../sshd.pam "$pkgdir"/usr/share/factory/etc/pam.d/sshd
install -Dm644 "$pkgdir/etc/ssh/moduli" -t "$pkgdir"/usr/share/factory/etc/ssh/
install -Dm644 "$pkgdir/etc/ssh/ssh_config" -t "$pkgdir"/usr/share/factory/etc/ssh/
install -Dm644 "$pkgdir/etc/ssh/sshd_config" -t "$pkgdir"/usr/share/factory/etc/ssh/
install -vDm 644 ../$pkgname.tmpfiles "$pkgdir/usr/lib/tmpfiles.d/$pkgname.conf"
install -Dm755 contrib/findssl.sh -t "$pkgdir"/usr/bin/
install -Dm755 contrib/ssh-copy-id -t "$pkgdir"/usr/bin/
install -Dm644 contrib/ssh-copy-id.1 -t "$pkgdir"/usr/share/man/man1/
}
# vim: ts=2 sw=2 et:
sha256sums=('dd8bd002a379b5d499dfb050dd1fa9af8029e80461f4bb6c523c49973f5a39f3'
'SKIP'
'975904668c3c98fff5dbf840717ae959593fa05e90e215e67bf7ee24369d6369'
'e5305767b2d317183ad1c5022a5f6705bd9014a8b22495a000fd482713738611'
'ffc175588991cb30300ae9e0fc6a3a589201999361c13bccc345414fe54e4bb3'
'b3b1e4f7af169cd5fccdcdf9538ef37fc919c79a9905f797925153a94e723998'
'633e24cbfcb045ba777d3e06d5f85dfaa06d44f4727d38c7fb2187c57498221d')