void-packages/srcpkgs/openssh/openssh-client.template

20 lines
564 B
Plaintext

# Template file for 'openssh-client'.
#
conf_files="/etc/ssh/ssh_config"
depends="openssh>=$version"
short_desc="The OpenSSH client"
long_desc="${long_desc}
This package contains the ${pkgname} client files."
do_install() {
for f in scp sftp slogin ssh ssh-add ssh-agent \
ssh-copy-id ssh-keyscan findssl; do
vmove usr/bin/${f} usr/bin
[ ! -f ${SRCPKGDESTDIR}/usr/share/man/man1/${f}.1 ] && continue
vmove usr/share/man/man1/${f}.1 usr/share/man/man1
done
vmove etc/ssh/ssh_config etc/ssh
vmove usr/share/man/man5/ssh_config.5 usr/share/man/man5
}