summaryrefslogtreecommitdiffstats
path: root/games/fgo/doinst.sh
diff options
context:
space:
mode:
author Philip Lacroix2014-03-14 10:32:47 +0100
committer Erik Hanson2014-03-21 19:01:15 +0100
commit9b10df2f47d271864756879f696846e7d08e3485 (patch)
tree1d4b1f971dd82850744bf218bf1798a48aee3207 /games/fgo/doinst.sh
parenta40ab1a2ef2bb7fda01fa77e27b454c52db51571 (diff)
downloadslackbuilds-9b10df2f47d271864756879f696846e7d08e3485.tar.gz
games/fgo: Script cleanups.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'games/fgo/doinst.sh')
-rw-r--r--games/fgo/doinst.sh9
1 files changed, 2 insertions, 7 deletions
diff --git a/games/fgo/doinst.sh b/games/fgo/doinst.sh
index 9204f9027b..ef3899e8dd 100644
--- a/games/fgo/doinst.sh
+++ b/games/fgo/doinst.sh
@@ -1,21 +1,16 @@
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
+for conf in /opt/fgo/data/config/* ; do
+ config ${conf}
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