openssh: Verify that we have packaged up man pages

This commit is contained in:
Fredrik Fornwall 2017-09-20 01:49:50 +02:00
parent e8926bb981
commit ceea531142
1 changed files with 10 additions and 0 deletions

View File

@ -75,6 +75,16 @@ termux_step_post_make_install () {
cp $TERMUX_PKG_SRCDIR/moduli $TERMUX_PREFIX/etc/ssh/moduli
}
termux_step_post_massage () {
# Verify that we have man pages packaged (#1538).
local manpage
for manpage in ssh-keyscan.1 ssh-add.1 scp.1 ssh-agent.1 ssh.1; do
if [ ! -f share/man/man1/$manpage ]; then
termux_error_exit "Missing man page $manpage"
fi
done
}
termux_step_create_debscripts () {
echo "#!$TERMUX_PREFIX/bin/sh" > postinst
echo "mkdir -p \$HOME/.ssh" >> postinst