diff options
author | Martin Rogge <martin_rogge@users.sourceforge.net> | 2013-03-16 15:37:53 -0400 |
---|---|---|
committer | dsomero <xgizzmo@slackbuilds.org> | 2013-03-22 07:16:49 -0400 |
commit | 7bcb0a37c5f54cc698dd0097b097cef79c8ccf7e (patch) | |
tree | c24b557ddd98791ce00fd996903617f57622ca0e /games/singularity/doinst.sh | |
parent | 062d08967109e0a71c375083878b5f73e7b2ba28 (diff) |
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.sh | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/games/singularity/doinst.sh b/games/singularity/doinst.sh new file mode 100644 index 000000000000..b178998539a6 --- /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 |