summaryrefslogtreecommitdiffstats
path: root/games/fgo/doinst.sh
diff options
context:
space:
mode:
author Philip Lacroix <philnx@bluebottle.com>2013-12-05 23:08:53 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2013-12-05 23:08:53 +0700
commitecb92e4043e563c51c8c6a092f1732ab4453aea1 (patch)
tree8761180672efdb6a57e121101fbcbbba633ee197 /games/fgo/doinst.sh
parentc0884355dcbb58ce646766ae9da08dc418c53ebe (diff)
downloadslackbuilds-ecb92e4043e563c51c8c6a092f1732ab4453aea1.tar.gz
slackbuilds-ecb92e4043e563c51c8c6a092f1732ab4453aea1.tar.xz
games/fgo: Added (FlightGear Flight Simulator Front End).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/fgo/doinst.sh')
-rw-r--r--games/fgo/doinst.sh29
1 files changed, 29 insertions, 0 deletions
diff --git a/games/fgo/doinst.sh b/games/fgo/doinst.sh
new file mode 100644
index 0000000000..9204f9027b
--- /dev/null
+++ b/games/fgo/doinst.sh
@@ -0,0 +1,29 @@
+config() {
+ NEW="$1"
+ OLD="$(dirname $NEW)/$(basename $NEW .new)"
+ # If there's no config file by that name, mv it over:
+ if [ ! -r $OLD ]; then
+ mv $NEW $OLD
+ elif [ "$(cat $OLD | md5sum)" = "$(cat $NEW | md5sum)" ]; then
+ # toss the redundant copy
+ rm $NEW
+ fi
+ # Otherwise, we leave the .new copy for the admin to consider...
+}
+
+CONFIG=${CONFIG:-/opt/fgo/data/config}
+for lang in de en es fr it pl ; do
+ config $CONFIG/config_${lang}.new
+done
+config $CONFIG/presets.new
+
+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
+