diff options
author | Andrew Clemons <andrew.clemons@gmail.com> | 2022-03-10 20:32:34 +1300 |
---|---|---|
committer | Andrew Clemons <andrew.clemons@gmail.com> | 2022-03-10 20:32:34 +1300 |
commit | 300fdd1540732cca0d52b60b8b3f8c8f2bf1f636 (patch) | |
tree | 9117628c3dcad92311163db49cc45c1e0add78b0 /ham/direwolf/direwolf.SlackBuild | |
parent | 7bae008ed236d0de5fec2ef38d941f0ffbc4fdcc (diff) |
ham/direwolf: Compress manpages.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Diffstat (limited to 'ham/direwolf/direwolf.SlackBuild')
-rw-r--r-- | ham/direwolf/direwolf.SlackBuild | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/ham/direwolf/direwolf.SlackBuild b/ham/direwolf/direwolf.SlackBuild index f0a5c8a24620..883b735fb038 100644 --- a/ham/direwolf/direwolf.SlackBuild +++ b/ham/direwolf/direwolf.SlackBuild @@ -24,7 +24,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=direwolf VERSION=${VERSION:-1.5} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -96,6 +96,9 @@ cp -a $PKG/usr/share/direwolf/pixmaps/dw-icon.png $PKG/usr/share/pixmaps/ 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 cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild find $PKG/usr/doc -name "Makefile" -exec rm {} \; |