summaryrefslogtreecommitdiffstats
path: root/games/singularity/doinst.sh
diff options
context:
space:
mode:
author Martin Rogge2013-03-16 20:37:53 +0100
committer dsomero2013-03-22 12:16:49 +0100
commit7bcb0a37c5f54cc698dd0097b097cef79c8ccf7e (patch)
treec24b557ddd98791ce00fd996903617f57622ca0e /games/singularity/doinst.sh
parent062d08967109e0a71c375083878b5f73e7b2ba28 (diff)
downloadslackbuilds-7bcb0a37c5f54cc698dd0097b097cef79c8ccf7e.tar.gz
games/singularity: Added (Alternative client for SecondLife)
Signed-off-by: dsomero <xgizzmo@slackbuilds.org>
Diffstat (limited to 'games/singularity/doinst.sh')
-rw-r--r--games/singularity/doinst.sh16
1 files changed, 16 insertions, 0 deletions
diff --git a/games/singularity/doinst.sh b/games/singularity/doinst.sh
new file mode 100644
index 0000000000..b178998539
--- /dev/null
+++ b/games/singularity/doinst.sh
@@ -0,0 +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 opt/singularity/singularity.new
+
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database 1> /dev/null &> /dev/null
+fi