From 42226b242efb657a9bed8f271f8ae0d18b05ab36 Mon Sep 17 00:00:00 2001 From: dsomero Date: Sat, 29 Sep 2012 17:29:26 -0400 Subject: games/hatari: Fixed (Handle $ARCH, icon, and desktop) Signed-off-by: dsomero --- games/hatari/doinst.sh | 9 +++++++++ games/hatari/hatari.SlackBuild | 12 ++++++++++-- 2 files changed, 19 insertions(+), 2 deletions(-) create mode 100644 games/hatari/doinst.sh (limited to 'games') diff --git a/games/hatari/doinst.sh b/games/hatari/doinst.sh new file mode 100644 index 0000000000..3e5691a052 --- /dev/null +++ b/games/hatari/doinst.sh @@ -0,0 +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 diff --git a/games/hatari/hatari.SlackBuild b/games/hatari/hatari.SlackBuild index 3c401f2d2a..372304b6a4 100644 --- a/games/hatari/hatari.SlackBuild +++ b/games/hatari/hatari.SlackBuild @@ -5,10 +5,17 @@ PRGNAM=hatari VERSION=${VERSION-1.4.0} -ARCH=${ARCH-i486} -BUILD=${BUILD-1} +BUILD=${BUILD-2} TAG=${TAG-_SBo} +if [ -z "$ARCH" ]; then + case "$( uname -m )" in + i?86) ARCH=i486 ;; + arm*) ARCH=arm ;; + *) ARCH=$( uname -m ) ;; + esac +fi + CWD=$(pwd) TMP=${TMP-/tmp/SBo} PKG=$TMP/package-$PRGNAM @@ -56,6 +63,7 @@ cat gpl.txt > $PKG/usr/doc/$PRGNAM-$VERSION/gpl.txt mkdir -p $PKG/install cat $CWD/slack-desc > $PKG/install/slack-desc +cat $CWD/doinst.sh > $PKG/install/doinst.sh cd $PKG /sbin/makepkg -l y -c n $OUTPUT/$PRGNAM-$VERSION-$ARCH-$BUILD$TAG.${PKGTYPE:-tgz} -- cgit v1.2.3