mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-25 10:03:03 +01:00
games/mrrescue: New-style icons.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
This commit is contained in:
parent
b1ee6977c2
commit
77fda57747
4 changed files with 20 additions and 8 deletions
|
@ -1,4 +1,4 @@
|
|||
Mr. Rescue (2d platform game)
|
||||
mrrescue (2d platform game)
|
||||
|
||||
Mr. Rescue is an arcade styled 2d action game centered around evacuating
|
||||
civilians from burning buildings.
|
||||
|
|
|
@ -1,3 +1,9 @@
|
|||
if [ -x /usr/bin/update-desktop-database ]; then
|
||||
/usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
|
||||
fi
|
||||
|
||||
if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
|
||||
if [ -x /usr/bin/gtk-update-icon-cache ]; then
|
||||
/usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
|
||||
fi
|
||||
fi
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
[Desktop Entry]
|
||||
Name=Mr. Rescue
|
||||
Comment=Rescue civilians from a burning building
|
||||
Exec=mrrescue
|
||||
Exec=/usr/games/mrrescue
|
||||
Icon=mrrescue
|
||||
Terminal=false
|
||||
Type=Application
|
||||
|
|
Loading…
Reference in a new issue