diff options
author | Klaatu <klaatu@member.fsf.org> | 2016-07-27 00:40:48 +0100 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2016-07-30 08:28:31 +0700 |
commit | 76882053d09234775addb503f0ee383d6804e84a (patch) | |
tree | 189b578d97c8b75c9781e47791785adbc8b69057 /audio/butt/doinst.sh | |
parent | 0f6e918737a1d48cc2dac464e31609447a15825c (diff) |
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.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/audio/butt/doinst.sh b/audio/butt/doinst.sh new file mode 100644 index 0000000000000..9d12120d19110 --- /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 |