diff options
Diffstat (limited to 'games/crispy-doom/crispy-doom.SlackBuild')
-rw-r--r-- | games/crispy-doom/crispy-doom.SlackBuild | 10 |
1 files changed, 1 insertions, 9 deletions
diff --git a/games/crispy-doom/crispy-doom.SlackBuild b/games/crispy-doom/crispy-doom.SlackBuild index 646df7682e..1d1414890a 100644 --- a/games/crispy-doom/crispy-doom.SlackBuild +++ b/games/crispy-doom/crispy-doom.SlackBuild @@ -23,7 +23,7 @@ # ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. PRGNAM=crispy-doom -VERSION=${VERSION:-5.0} +VERSION=${VERSION:-5.1} BUILD=${BUILD:-2} TAG=${TAG:-_SBo} @@ -89,14 +89,6 @@ 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 -# Take care of conflicts with Chocolate DOOM -rm $PKG/usr/man/man6/chocolate-setup.6 -mv $PKG/usr/man/man6/chocolate-server.6 $PKG/usr/man/man6/crispy-server.6 - -# Fix icon locations -mkdir -p $PKG/usr/share/icons/hicolor/128x128 -mv $PKG/usr/share/icons/{crispy-doom.png,crispy-setup.png} $PKG/usr/share/icons/hicolor/128x128 - 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 |