diff options
author | Nishant Limbachia <nishant@mnspace.net> | 2010-07-01 01:02:19 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2010-07-01 01:02:19 -0500 |
commit | 0260e20eb9bef240d7bd20338486484d571ed347 (patch) | |
tree | 7bacf7458cff1012d7fe83bffb542bb108db4b17 /audio/python-audiotools/doinst.sh | |
parent | 84928061228fe775b80c0e21b685215f956bb0d5 (diff) | |
download | slackbuilds-0260e20eb9bef240d7bd20338486484d571ed347.tar.gz |
audio/python-audiotools: Added (CLI audio handling programs)
Signed-off-by: Robby Workman <rworkman@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 + |