diff options
author | Niels Horn <niels.horn@gmail.com> | 2010-05-13 00:58:23 +0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-05-13 00:58:23 +0200 |
commit | 4ea4881ef28d6a990e65b1f65426267f670fc413 (patch) | |
tree | 7ee40f8642305b7727fbd89351583ca2f0933a63 /graphics/povray/doinst.sh | |
parent | 055168680389845d5326b803dce9a0e33a950427 (diff) | |
download | slackbuilds-4ea4881ef28d6a990e65b1f65426267f670fc413.tar.gz |
graphics/povray: Added to 13.0 repository
Diffstat (limited to 'graphics/povray/doinst.sh')
-rw-r--r-- | graphics/povray/doinst.sh | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/graphics/povray/doinst.sh b/graphics/povray/doinst.sh new file mode 100644 index 0000000000..95e20fef95 --- /dev/null +++ b/graphics/povray/doinst.sh @@ -0,0 +1,20 @@ +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/povray/__VERSION__/povray.conf.new +config etc/povray/__VERSION__/povray.ini.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + |