summaryrefslogtreecommitdiffstats
path: root/games
diff options
context:
space:
mode:
author dsomero2012-09-29 23:18:25 +0200
committer Robby Workman2012-09-30 00:17:44 +0200
commit715f8e8917179a142d1aed1f314fb997fad12141 (patch)
tree4b87109627c08d2b7d6f3545cf8d4807422eba34 /games
parentd8162914b2dd83e550558cb93f4c1f2450eaad8a (diff)
downloadslackbuilds-715f8e8917179a142d1aed1f314fb997fad12141.tar.gz
games/frozen-bubble: Fixed (Handle icon files)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games')
-rw-r--r--games/frozen-bubble/doinst.sh11
-rw-r--r--games/frozen-bubble/frozen-bubble.SlackBuild4
2 files changed, 9 insertions, 6 deletions
diff --git a/games/frozen-bubble/doinst.sh b/games/frozen-bubble/doinst.sh
index 61ee2db596..3e5691a052 100644
--- a/games/frozen-bubble/doinst.sh
+++ b/games/frozen-bubble/doinst.sh
@@ -1,4 +1,9 @@
-#!/bin/sh
-if [ -x usr/bin/update-desktop-database ]; then
- ./usr/bin/update-desktop-database ./usr/share/applications > /dev/null 2>&1
+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/frozen-bubble/frozen-bubble.SlackBuild b/games/frozen-bubble/frozen-bubble.SlackBuild
index 98b51dcb98..57ec9a1b68 100644
--- a/games/frozen-bubble/frozen-bubble.SlackBuild
+++ b/games/frozen-bubble/frozen-bubble.SlackBuild
@@ -24,15 +24,13 @@
PRGNAM=frozen-bubble
VERSION=2.2.0
-BUILD=${BUILD:-1}
+BUILD=${BUILD:-2}
TAG=${TAG:-_SBo}
-# Automatically determine the architecture we're building on:
if [ -z "$ARCH" ]; then
case "$( uname -m )" in
i?86) ARCH=i486 ;;
arm*) ARCH=arm ;;
- # Unless $ARCH is already set, use uname -m for all other archs:
*) ARCH=$( uname -m ) ;;
esac
fi