diff options
author | Nishant Limbachia <nishant@mnspace.net> | 2016-08-21 11:13:55 +0100 |
---|---|---|
committer | David Spencer <idlemoor@slackbuilds.org> | 2016-08-28 00:22:59 +0100 |
commit | 8c0bc964d3fcaa028d2f723e0e6b72d9c4bd8548 (patch) | |
tree | 2226a5ea8f14426acd508ce45672fafd6139af41 /audio/python-audiotools/doinst.sh | |
parent | 0196091c86692b777e8575b87de91052d433e7b0 (diff) | |
download | slackbuilds-8c0bc964d3fcaa028d2f723e0e6b72d9c4bd8548.tar.gz |
audio/python-audiotools: Updated for version 3.1.1.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'audio/python-audiotools/doinst.sh')
-rw-r--r-- | audio/python-audiotools/doinst.sh | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/audio/python-audiotools/doinst.sh b/audio/python-audiotools/doinst.sh new file mode 100644 index 0000000000..ee19f823a3 --- /dev/null +++ b/audio/python-audiotools/doinst.sh @@ -0,0 +1,15 @@ +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 + |