Browse Source
games/burgerspace: Updated for version 1.9.5.
Signed-off-by: B. Watson <urchlay@slackware.uk>
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
pull/206/head
B. Watson
2 years ago
committed by
Willy Sudiarto Raharjo
No known key found for this signature in database
GPG Key ID: 3F617144D7238786
3 changed files with
17 additions and
4 deletions
-
games/burgerspace/burgerspace.SlackBuild
-
games/burgerspace/burgerspace.info
-
games/burgerspace/doinst.sh
|
|
|
@ -6,10 +6,12 @@ |
|
|
|
|
|
|
|
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details. |
|
|
|
|
|
|
|
# 20230819 bkw: update for v1.9.5, new-style icon dir. |
|
|
|
|
|
|
|
cd $(dirname $0) ; CWD=$(pwd) |
|
|
|
|
|
|
|
PRGNAM=burgerspace |
|
|
|
VERSION=${VERSION:-1.9.4} |
|
|
|
VERSION=${VERSION:-1.9.5} |
|
|
|
BUILD=${BUILD:-1} |
|
|
|
TAG=${TAG:-_SBo} |
|
|
|
PKGTYPE=${PKGTYPE:-tgz} |
|
|
|
@ -80,6 +82,11 @@ gzip $PKG/usr/man/man?/*.? |
|
|
|
# 'make install-strip' created the doc dir already |
|
|
|
cat $CWD/$PRGNAM.SlackBuild > $PKG/usr/doc/$PRGNAM-$VERSION/$PRGNAM.SlackBuild |
|
|
|
|
|
|
|
# 20230819 bkw: new-style icon dir. |
|
|
|
mkdir -p $PKG/usr/share/icons/hicolor/32x32/apps |
|
|
|
mv $PKG/usr/share/pixmaps/* $PKG/usr/share/icons/hicolor/32x32/apps |
|
|
|
ln -s ../icons/hicolor/32x32/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png |
|
|
|
|
|
|
|
# get rid of autoconf-mandated 0-byte THANKS and TODO placeholders. |
|
|
|
find $PKG/usr/doc/$PRGNAM-$VERSION -type f -a -empty | xargs rm -f |
|
|
|
|
|
|
|
|
|
|
|
@ -1,8 +1,8 @@ |
|
|
|
PRGNAM="burgerspace" |
|
|
|
VERSION="1.9.4" |
|
|
|
VERSION="1.9.5" |
|
|
|
HOMEPAGE="http://perso.b2b2c.ca/~sarrazip/dev/burgerspace.html" |
|
|
|
DOWNLOAD="https://slackware.uk/~urchlay/src/burgerspace-1.9.4.tar.gz" |
|
|
|
MD5SUM="c942143065bcb5ee235fb69df4389a7b" |
|
|
|
DOWNLOAD="http://perso.b2b2c.ca/~sarrazip/dev/burgerspace-1.9.5.tar.gz" |
|
|
|
MD5SUM="15e419b7824a3430f9036567fca2e62e" |
|
|
|
DOWNLOAD_x86_64="" |
|
|
|
MD5SUM_x86_64="" |
|
|
|
REQUIRES="flatzebra" |
|
|
|
|
|
|
|
@ -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 -f usr/share/icons/hicolor >/dev/null 2>&1 |
|
|
|
fi |
|
|
|
fi |