diff options
Diffstat (limited to 'games/mrrescue/mrrescue.SlackBuild')
-rw-r--r-- | games/mrrescue/mrrescue.SlackBuild | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/games/mrrescue/mrrescue.SlackBuild b/games/mrrescue/mrrescue.SlackBuild index ce259041e522..6e39e2760e2e 100644 --- a/games/mrrescue/mrrescue.SlackBuild +++ b/games/mrrescue/mrrescue.SlackBuild @@ -6,6 +6,7 @@ # Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. +# 20211022 bkw: BUILD=2, new-style icons. # 20200415 bkw: update to latest upstream git, commit a5be73c. Required # for love-11.x support (someone upgraded love and didn't bother to tell # me so this has been broken for ~2 year). @@ -14,7 +15,7 @@ cd $(dirname $0) ; CWD=$(pwd) PRGNAM=mrrescue VERSION=${VERSION:-1.02e+20180818_a5be73c} -BUILD=${BUILD:-1} +BUILD=${BUILD:-2} TAG=${TAG:-_SBo} PKGTYPE=${PKGTYPE:-tgz} @@ -23,9 +24,6 @@ DIFFVER=${VERSION##*+} ARCH=noarch -# If the variable PRINT_PACKAGE_NAME is set, then this script will report what -# the name of the created package would be, and then exit. This information -# could be useful to other scripts. if [ ! -z "${PRINT_PACKAGE_NAME}" ]; then echo "$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.$PKGTYPE" exit 0 @@ -58,10 +56,18 @@ echo '#!/usr/bin/env love' > $PKG/usr/games/$PRGNAM cat tmp.zip >> $PKG/usr/games/$PRGNAM chmod 755 $PKG/usr/games/$PRGNAM -# icon is a piece of data/splash.png from the payload file, chopped up +# icons made from piece of data/splash.png from the payload file, chopped up # with the gimp. + +for px in 16 32 48 64 128; do + size=${px}x${px} + dir=$PKG/usr/share/icons/hicolor/$size/apps + mkdir -p $dir + convert -resize $size $CWD/$PRGNAM.png $dir/$PRGNAM.png +done + mkdir -p $PKG/usr/share/pixmaps -cat $CWD/$PRGNAM.png > $PKG/usr/share/pixmaps/$PRGNAM.png +ln -s ../icons/hicolor/48x48/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png # .desktop written for this build mkdir -p $PKG/usr/share/applications |