summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
author B. Watson2024-03-13 00:18:27 +0100
committer Willy Sudiarto Raharjo2024-03-16 04:22:19 +0100
commitf58f82348b51d9612f518426b370d7e4fdaaa1ba (patch)
treec764956a9b11aefc3aa2a4f7d8f7f46c5ff64ca2
parentccc0372decba784703ac51b3a11ce5ecc5496140 (diff)
downloadslackbuilds-f58f82348b51d9612f518426b370d7e4fdaaa1ba.tar.gz
games/atari800: Updated for version 5.2.0.
Signed-off-by: B. Watson <urchlay@slackware.uk> Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
-rw-r--r--games/atari800/atari800.SlackBuild21
-rw-r--r--games/atari800/atari800.info6
-rw-r--r--games/atari800/doinst.sh6
3 files changed, 27 insertions, 6 deletions
diff --git a/games/atari800/atari800.SlackBuild b/games/atari800/atari800.SlackBuild
index 854d2ad339..a4d603a8f3 100644
--- a/games/atari800/atari800.SlackBuild
+++ b/games/atari800/atari800.SlackBuild
@@ -6,6 +6,10 @@
# Licensed under the WTFPL. See http://www.wtfpl.net/txt/copying/ for details.
+# 20240312 bkw:
+# - update for v5.2.0.
+# - new-style icons.
+
# 20220615 bkw:
# - update for 5.0.0.
# - add man page for new cart utility.
@@ -29,7 +33,7 @@
cd $(dirname $0) ; CWD=$(pwd)
PRGNAM=atari800
-VERSION=${VERSION:-5.0.0}
+VERSION=${VERSION:-5.2.0}
BUILD=${BUILD:-1}
TAG=${TAG:-_SBo}
PKGTYPE=${PKGTYPE:-tgz}
@@ -152,9 +156,20 @@ cp -a util $PKGDOCDIR
# the act/*.act files are palettes from the dark ages, leave them out.
-# nice copyright-friendly icon
+# nice copyright-friendly icon.
+# 20240312 bkw: new-style icons.
+for px in 16 22 32 48 64 128; do
+ sz="${px}x${px}"
+ dir=$PKG/usr/share/icons/hicolor/$sz/apps
+ mkdir -p $dir
+ rsvg-convert --width=$px --height=$px data/atari2.svg > $dir/$PRGNAM.png
+done
+
+mkdir -p $PKG/usr/share/icons/hicolor/scalable/apps
+cat data/atari2.svg > $PKG/usr/share/icons/hicolor/scalable/apps/$PRGNAM.svg
+
mkdir -p $PKG/usr/share/pixmaps
-cat data/atari2.png > $PKG/usr/share/pixmaps/$PRGNAM.png
+ln -s ../icons/hicolor/48x48/apps/$PRGNAM.png $PKG/usr/share/pixmaps/$PRGNAM.png
# .desktop file written for this build
mkdir -p $PKG/usr/share/applications
diff --git a/games/atari800/atari800.info b/games/atari800/atari800.info
index d06eb989c3..41eb3e1b95 100644
--- a/games/atari800/atari800.info
+++ b/games/atari800/atari800.info
@@ -1,8 +1,8 @@
PRGNAM="atari800"
-VERSION="5.0.0"
+VERSION="5.2.0"
HOMEPAGE="https://atari800.github.io/"
-DOWNLOAD="https://github.com/atari800/atari800/releases/download/ATARI800_5_0_0/atari800-5.0.0-src.tgz"
-MD5SUM="f5dc10d461d0241a5978a0998028e49a"
+DOWNLOAD="https://github.com/atari800/atari800/releases/download/ATARI800_5_2_0/atari800-5.2.0-src.tgz"
+MD5SUM="bed6188abbe73c2ac109dc954050fd46"
DOWNLOAD_x86_64=""
MD5SUM_x86_64=""
REQUIRES=""
diff --git a/games/atari800/doinst.sh b/games/atari800/doinst.sh
index 5fb28930db..65c7e2eeb9 100644
--- a/games/atari800/doinst.sh
+++ b/games/atari800/doinst.sh
@@ -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