diff options
author | Paul Wisehart <wise@lupulin.net> | 2010-05-11 15:18:41 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-11 15:18:41 +0200 |
commit | ee6d106d6a907b3e155bf44ee6a8d9a561a8b74a (patch) | |
tree | c72b2cdc3c95b2e460ec96061064492c74bf945b /system/mrxvt/doinst.sh | |
parent | e1471001dc486730939676695fb5db1430c4516a (diff) | |
download | slackbuilds-ee6d106d6a907b3e155bf44ee6a8d9a561a8b74a.tar.gz |
system/mrxvt: Initial import
Diffstat (limited to 'system/mrxvt/doinst.sh')
-rw-r--r-- | system/mrxvt/doinst.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/system/mrxvt/doinst.sh b/system/mrxvt/doinst.sh new file mode 100644 index 0000000000..5c2cb485e8 --- /dev/null +++ b/system/mrxvt/doinst.sh @@ -0,0 +1,22 @@ +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/mrxvt/default.menu.new +config etc/mrxvt/submenus.menu.new +config etc/mrxvt/mrxvtrc.new +config etc/mrxvt/mrxvtrc.sample.new + +if [ -x usr/bin/update-desktop-database ]; then + ./usr/bin/update-desktop-database ./usr/share/applications >/dev/null 2>&1 +fi + |