summaryrefslogtreecommitdiffstats
path: root/audio/python-audiotools/doinst.sh
diff options
context:
space:
mode:
author Nishant Limbachia <nishant@mnspace.net>2014-09-25 17:06:48 +0700
committer Willy Sudiarto Raharjo <willysr@slackbuilds.org>2014-09-25 17:06:48 +0700
commite188c623a9f5fa43cdafdcadb227fe0f4c9bac30 (patch)
tree29834f1f4cb0b4d38767c3ce7b41413c3c10e98e /audio/python-audiotools/doinst.sh
parent4034ec33c20a0fbde25ad91e935a96546d4a4760 (diff)
downloadslackbuilds-e188c623a9f5fa43cdafdcadb227fe0f4c9bac30.tar.gz
slackbuilds-e188c623a9f5fa43cdafdcadb227fe0f4c9bac30.tar.xz
audio/python-audiotools: Updated for version 2.22.
Signed-off-by: Willy Sudiarto Raharjo <willysr@slackbuilds.org>
Diffstat (limited to 'audio/python-audiotools/doinst.sh')
-rw-r--r--audio/python-audiotools/doinst.sh15
1 files changed, 0 insertions, 15 deletions
diff --git a/audio/python-audiotools/doinst.sh b/audio/python-audiotools/doinst.sh
deleted file mode 100644
index ee19f823a3..0000000000
--- a/audio/python-audiotools/doinst.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-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/audiotools.cfg.new
-