openssh: Verify that we have packaged up man pages
authorFredrik Fornwall <fredrik@fornwall.net>
Tue, 19 Sep 2017 23:49:50 +0000 (01:49 +0200)
committerFredrik Fornwall <fredrik@fornwall.net>
Tue, 19 Sep 2017 23:49:50 +0000 (01:49 +0200)
packages/openssh/build.sh

index 3f39da7..064f2f8 100755 (executable)
@@ -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