summaryrefslogtreecommitdiffstats
path: root/network/efax-gtk/doinst.sh
diff options
context:
space:
mode:
author LukenShiro2010-05-11 22:54:45 +0200
committer Robby Workman2010-05-11 22:54:45 +0200
commit0229d96159745b3aa42f479da9364749ebb88736 (patch)
treeb08202e1122b26008624bf325aeb67aa8edcec49 /network/efax-gtk/doinst.sh
parent11c586d606b711722739d4e67db062179c3dfd91 (diff)
downloadslackbuilds-0229d96159745b3aa42f479da9364749ebb88736.tar.gz
network/efax-gtk: Added to 12.1 repository
Diffstat (limited to 'network/efax-gtk/doinst.sh')
-rw-r--r--network/efax-gtk/doinst.sh24
1 files changed, 24 insertions, 0 deletions
diff --git a/network/efax-gtk/doinst.sh b/network/efax-gtk/doinst.sh
new file mode 100644
index 0000000000..6b799e87d6
--- /dev/null
+++ b/network/efax-gtk/doinst.sh
@@ -0,0 +1,24 @@
+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/efax-gtkrc.new
+
+# Update desktop menu and mime database
+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
+