summaryrefslogtreecommitdiffstats
path: root/graphics/xmedcon/doinst.sh
diff options
context:
space:
mode:
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
commit089565500023ee13d99acb9bf845cc9990fac1ec (patch)
treebcfdbf24cc6f58277f03d62d3531c0fc470f8163 /graphics/xmedcon/doinst.sh
parent601d057fa2de1bdefdbc713ffc2246ae5522a17c (diff)
downloadslackbuilds-089565500023ee13d99acb9bf845cc9990fac1ec.tar.gz
slackbuilds-089565500023ee13d99acb9bf845cc9990fac1ec.tar.xz
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.sh33
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