summaryrefslogtreecommitdiff
path: root/games/ucr/doinst.sh
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2011-12-20 10:39:17 -0200
committerRobby Workman <rworkman@slackbuilds.org>2011-12-22 00:02:52 -0600
commit98e800a9a59001158e98c32242b181be55e9368f (patch)
tree2d7f001ff2ad88a3ccf34d0d5621445cc5469dd4 /games/ucr/doinst.sh
parentc5ee6ec05fe53d5dc6fa0aff27044329f9f88f1a (diff)
downloadslackbuilds-98e800a9a59001158e98c32242b181be55e9368f.tar.gz
games/ucr: Added (Ultima Classics Revisited)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'games/ucr/doinst.sh')
-rw-r--r--games/ucr/doinst.sh19
1 files changed, 19 insertions, 0 deletions
diff --git a/games/ucr/doinst.sh b/games/ucr/doinst.sh
new file mode 100644
index 0000000000..f565650032
--- /dev/null
+++ b/games/ucr/doinst.sh
@@ -0,0 +1,19 @@
+
+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/ucr/ucr.conf.new
+
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+fi