diff options
author | slacksam <sam_web@yahoo.de> | 2013-12-28 08:41:07 +0700 |
---|---|---|
committer | Erik Hanson <erik@slackbuilds.org> | 2014-01-07 11:13:57 -0600 |
commit | 089565500023ee13d99acb9bf845cc9990fac1ec (patch) | |
tree | bcfdbf24cc6f58277f03d62d3531c0fc470f8163 /graphics/xmedcon/doinst.sh | |
parent | 601d057fa2de1bdefdbc713ffc2246ae5522a17c (diff) | |
download | slackbuilds-089565500023ee13d99acb9bf845cc9990fac1ec.tar.gz |
graphics/xmedcon: Added (Medical Image Conversion).
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'graphics/xmedcon/doinst.sh')
-rw-r--r-- | graphics/xmedcon/doinst.sh | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/graphics/xmedcon/doinst.sh b/graphics/xmedcon/doinst.sh new file mode 100644 index 0000000000..9b66a71f65 --- /dev/null +++ b/graphics/xmedcon/doinst.sh @@ -0,0 +1,33 @@ +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... +} + +preserve_perms() { + NEW="$1" + OLD="$(dirname $NEW)/$(basename $NEW .new)" + if [ -e $OLD ]; then + cp -a $OLD ${NEW}.incoming + cat $NEW > ${NEW}.incoming + mv ${NEW}.incoming $NEW + fi + config $NEW +} + +config etc/xmedconrc.new + +if [ -x /usr/bin/update-desktop-database ]; then + /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1 +fi + +if [ -x /usr/bin/update-mime-database ]; then + /usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1 +fi |