summaryrefslogtreecommitdiffstats
path: root/games/gargoyle/doinst.sh
diff options
context:
space:
mode:
author Dugan Chen2011-07-04 01:34:25 +0200
committer Niels Horn2011-07-04 01:34:25 +0200
commit356d355af601bdf82b3da6268c005e0bc5f5b974 (patch)
tree19b4947c26ad9724662449f88666aa2ad9a1a9b0 /games/gargoyle/doinst.sh
parentb31fbb245b85938f49fff0e9a257274825f7e75a (diff)
downloadslackbuilds-356d355af601bdf82b3da6268c005e0bc5f5b974.tar.gz
games/gargoyle: Added (interactive fiction interpreter)
Diffstat (limited to 'games/gargoyle/doinst.sh')
-rw-r--r--games/gargoyle/doinst.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/games/gargoyle/doinst.sh b/games/gargoyle/doinst.sh
new file mode 100644
index 0000000000..94e2207419
--- /dev/null
+++ b/games/gargoyle/doinst.sh
@@ -0,0 +1,14 @@
+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 etc/garglk.ini.new