From 356d355af601bdf82b3da6268c005e0bc5f5b974 Mon Sep 17 00:00:00 2001 From: Dugan Chen Date: Sun, 3 Jul 2011 20:34:25 -0300 Subject: games/gargoyle: Added (interactive fiction interpreter) --- games/gargoyle/doinst.sh | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 games/gargoyle/doinst.sh (limited to 'games/gargoyle/doinst.sh') 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 -- cgit v1.2.3