diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-09-12 01:42:00 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-09-12 23:08:53 -0500 |
commit | 250dd5450676fc9263c21e6e2144b01b09f4f585 (patch) | |
tree | 76e4bc0ad6501eb962b16d26b20f907372248f03 /games/xspacewarp/doinst.sh | |
parent | 076d539a097d737ff2641722b3560fbe0e791472 (diff) | |
download | slackbuilds-250dd5450676fc9263c21e6e2144b01b09f4f585.tar.gz |
games/xspacewarp: include manpage and Xdefaults file
Thanks to Luis Henrique.
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'games/xspacewarp/doinst.sh')
-rw-r--r-- | games/xspacewarp/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/games/xspacewarp/doinst.sh b/games/xspacewarp/doinst.sh index 5fb28930db..1015d8fd4d 100644 --- a/games/xspacewarp/doinst.sh +++ b/games/xspacewarp/doinst.sh @@ -1,3 +1,18 @@ +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/X11/app-defaults/XSpacewarp.new + if [ -x /usr/bin/update-desktop-database ]; then /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 fi |