summaryrefslogtreecommitdiffstats
path: root/audio/butt/doinst.sh
diff options
context:
space:
mode:
author Klaatu2016-07-27 01:40:48 +0200
committer Willy Sudiarto Raharjo2016-07-30 03:28:31 +0200
commit76882053d09234775addb503f0ee383d6804e84a (patch)
tree189b578d97c8b75c9781e47791785adbc8b69057 /audio/butt/doinst.sh
parent0f6e918737a1d48cc2dac464e31609447a15825c (diff)
downloadslackbuilds-76882053d09234775addb503f0ee383d6804e84a.tar.gz
audio/butt: Added (Broadcast Using This Tool).
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'audio/butt/doinst.sh')
-rw-r--r--audio/butt/doinst.sh22
1 files changed, 22 insertions, 0 deletions
diff --git a/audio/butt/doinst.sh b/audio/butt/doinst.sh
new file mode 100644
index 0000000000..9d12120d19
--- /dev/null
+++ b/audio/butt/doinst.sh
@@ -0,0 +1,22 @@
+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...
+}
+
+if [ -x /usr/bin/update-desktop-database ]; then
+ /usr/bin/update-desktop-database -q usr/share/applications >/dev/null 2>&1
+fi
+
+if [ -e usr/share/icons/hicolor/icon-theme.cache ]; then
+ if [ -x /usr/bin/gtk-update-icon-cache ]; then
+ /usr/bin/gtk-update-icon-cache usr/share/icons/hicolor >/dev/null 2>&1
+ fi
+fi