summaryrefslogtreecommitdiffstats
path: root/ham
diff options
context:
space:
mode:
author Andrew Clemons2022-03-10 08:32:34 +0100
committer Andrew Clemons2022-03-10 08:32:34 +0100
commit300fdd1540732cca0d52b60b8b3f8c8f2bf1f636 (patch)
tree9117628c3dcad92311163db49cc45c1e0add78b0 /ham
parent7bae008ed236d0de5fec2ef38d941f0ffbc4fdcc (diff)
downloadslackbuilds-300fdd1540732cca0d52b60b8b3f8c8f2bf1f636.tar.gz
ham/direwolf: Compress manpages.
Signed-off-by: Andrew Clemons <andrew.clemons@gmail.com>
Diffstat (limited to 'ham')
-rw-r--r--ham/direwolf/direwolf.SlackBuild5
1 files changed, 4 insertions, 1 deletions
diff --git a/ham/direwolf/direwolf.SlackBuild b/ham/direwolf/direwolf.SlackBuild
index f0a5c8a246..883b735fb0 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 {} \;