misc/no-more-secrets: Compress manpages.

Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
This commit is contained in:
Dimitris Zlatanidis 2017-11-16 21:24:46 +00:00 committed by Willy Sudiarto Raharjo
parent aef3317143
commit 81e740d4fc

View file

@ -78,6 +78,9 @@ make install DESTDIR=$PKG
find $PKG -print0 | xargs -0 file | grep -e "executable" -e "shared object" | grep ELF \
| cut -f 1 -d : | xargs strip --strip-unneeded 2> /dev/null || true
find $PKG/usr/man -type f -exec gzip -9 {} \;
for i in $( find $PKG/usr/man -type l ) ; do ln -s $( readlink $i ).gz $i.gz ; rm $i ; done
mkdir -p $PKG/usr/doc/$PRGNAM-$VERSION
cp -a LICENSE README.md $PKG/usr/doc/$PRGNAM-$VERSION
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild