summaryrefslogtreecommitdiffstats
path: root/games/firestorm/doinst.sh
diff options
context:
space:
mode:
author Martin Rogge <martin_rogge@users.sourceforge.net>2012-08-01 07:36:27 -0300
committer Robby Workman <rworkman@slackbuilds.org>2012-08-14 22:30:33 -0500
commitc8bf3c668c3bf7b13f012ca9ad214b7f8fde5c13 (patch)
treeb8ae54fdb46dde1e3bc326f670653a135524f7ba /games/firestorm/doinst.sh
parentf25b7788b86f9852dfa8b79a559e3e79c44cc4e1 (diff)
downloadslackbuilds-c8bf3c668c3bf7b13f012ca9ad214b7f8fde5c13.tar.gz
slackbuilds-c8bf3c668c3bf7b13f012ca9ad214b7f8fde5c13.tar.xz
games/firestorm: Updated for version 4.1.1.28744.
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'games/firestorm/doinst.sh')
-rw-r--r--games/firestorm/doinst.sh12
1 files changed, 12 insertions, 0 deletions
diff --git a/games/firestorm/doinst.sh b/games/firestorm/doinst.sh
index 5e0294e2f9..7474cfb7ca 100644
--- a/games/firestorm/doinst.sh
+++ b/games/firestorm/doinst.sh
@@ -1,3 +1,15 @@
+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 opt/firestorm/firestorm.new
if [ -x /usr/bin/update-desktop-database ]; then
/usr/bin/update-desktop-database 1> /dev/null &> /dev/null
fi