diff options
author | Zbigniew Baniewski <zb@ispid.com.pl> | 2011-01-08 16:47:29 -0200 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-01-10 15:04:24 -0600 |
commit | 56707bf14ab16457b0292c549061ad3903b5b81d (patch) | |
tree | 2d1094baba122386d829a6dda636deeb77c3b0fb /audio/bristol/doinst.sh | |
parent | b2a607f27c22152cf8d8b6f72fd2b3d0b852a282 (diff) | |
download | slackbuilds-56707bf14ab16457b0292c549061ad3903b5b81d.tar.gz |
audio/bristol: Added (Synthesiser Emulations on Linux)
Signed-off-by: Niels Horn <niels.horn@slackbuilds.org>
Diffstat (limited to 'audio/bristol/doinst.sh')
-rw-r--r-- | audio/bristol/doinst.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/audio/bristol/doinst.sh b/audio/bristol/doinst.sh new file mode 100644 index 0000000000..19a6ff6ac8 --- /dev/null +++ b/audio/bristol/doinst.sh @@ -0,0 +1,13 @@ +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... +} + |