diff options
author | Alexander Verbovetsky <alik@ejik.org> | 2017-01-31 20:22:03 +0000 |
---|---|---|
committer | Willy Sudiarto Raharjo <willysr@slackbuilds.org> | 2017-02-04 06:59:32 +0700 |
commit | d63cc2cc24043e664c8f200005ecbdd63cee5c9b (patch) | |
tree | eb938ae4b17feae1c23ce3870fc7415c09a90e0a /office/multivalent-tool-pdf/doinst.sh | |
parent | 7ae714a6cdcadf2cd1386c656d6361d1c07b56f9 (diff) |
office/multivalent-tool-pdf: Updated for version 0.8.5.20060102.
Signed-off-by: David Spencer <idlemoor@slackbuilds.org>
Diffstat (limited to 'office/multivalent-tool-pdf/doinst.sh')
-rw-r--r-- | office/multivalent-tool-pdf/doinst.sh | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/office/multivalent-tool-pdf/doinst.sh b/office/multivalent-tool-pdf/doinst.sh new file mode 100644 index 0000000000000..7b5fb07db52e1 --- /dev/null +++ b/office/multivalent-tool-pdf/doinst.sh @@ -0,0 +1,14 @@ +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/bash_completion.d/multivalent-tool-pdf.new |