From: Fredrik Fornwall Date: Tue, 21 Mar 2017 23:23:37 +0000 (+0100) Subject: texlive: Move man pages to normal path X-Git-Url: https://git.distorted.org.uk/~mdw/termux-packages/commitdiff_plain/d5585b758566176eb3659c9fb9a71d81cc4a12e0 texlive: Move man pages to normal path This ensures that the man command works, and fixes complaints from a validation script that thinks that all man pages should be under $PREFIX/share/man. --- diff --git a/packages/texlive/build.sh b/packages/texlive/build.sh index b0fd601f..fd8c9b1d 100644 --- a/packages/texlive/build.sh +++ b/packages/texlive/build.sh @@ -62,6 +62,8 @@ termux_step_post_extract_package () { } termux_step_post_make_install () { + mkdir -p $TERMUX_PREFIX/share/man/man{1,5}/ + mv $TERMUX_PREFIX/opt/texlive/2016/share/man/man{1,5}/* $TERMUX_PREFIX/share/man/man1/ cp $TERMUX_PKG_BUILDER_DIR/termux-install-tl.sh $TERMUX_PREFIX/bin/termux-install-tl }