diff options
Diffstat (limited to 'games/gargoyle/gargoyle.SlackBuild')
-rw-r--r-- | games/gargoyle/gargoyle.SlackBuild | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/games/gargoyle/gargoyle.SlackBuild b/games/gargoyle/gargoyle.SlackBuild index d57156ab00914..9d3a57962ed2f 100644 --- a/games/gargoyle/gargoyle.SlackBuild +++ b/games/gargoyle/gargoyle.SlackBuild @@ -7,7 +7,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=gargoyle -VERSION=${VERSION:-2022.1} +VERSION=${VERSION:-2023.1} BUILD=${BUILD:-1} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -75,6 +75,10 @@ cd .. 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 +mv $PKG/usr/share/man $PKG/usr/man +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/games mv $PKG/usr/bin/gargoyle $PKG/usr/games/gargoyle |