aboutsummaryrefslogtreecommitdiff
path: root/libraries/libopenraw/doinst.sh
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2017-03-20 05:15:34 -0400
committerDavid Spencer <idlemoor@slackbuilds.org>2017-03-25 13:26:46 +0000
commitcb19e91cdbe93c8aae7ed6f4a3f470497d9053e3 (patch)
treedeacd7e4d0bf15a93d849a48d970e6264b2f4490 /libraries/libopenraw/doinst.sh
parentc5098156622cb904955a37eafae5d16b73c1aa09 (diff)
libraries/libopenraw: Remove unused doinst.sh, i486=>i586.
Signed-off-by: B. Watson <yalhcru@gmail.com> Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'libraries/libopenraw/doinst.sh')
-rw-r--r--libraries/libopenraw/doinst.sh24
1 files changed, 0 insertions, 24 deletions
diff --git a/libraries/libopenraw/doinst.sh b/libraries/libopenraw/doinst.sh
deleted file mode 100644
index 234ad26971..0000000000
--- a/libraries/libopenraw/doinst.sh
+++ /dev/null
@@ -1,24 +0,0 @@
-#!/bin/sh
-
-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/$PRGNAM.conf.new
-
-if [ -x usr/bin/update-desktop-database ]; then
- usr/bin/update-desktop-database -q usr/share/applications
-fi
-
-if [ -x usr/bin/update-mime-database ]; then
- usr/bin/update-mime-database usr/share/mime >/dev/null 2>&1
-fi