diff options
author | Arne Welzel <arne.welzel@googlemail.com> | 2011-07-16 19:51:11 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2011-07-16 19:51:11 -0500 |
commit | e3e945dc02f02968a8a3e10654f5def0ea421612 (patch) | |
tree | aed65788dfd52a15202e81afa0b6ec4586ee0783 /office/apvlv/doinst.sh | |
parent | 43241823528dd4e8b5b5aba5d5574569ba28bca2 (diff) |
office/apvlv: Added (a PDF viewer which uses Vim keybindigs)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'office/apvlv/doinst.sh')
-rw-r--r-- | office/apvlv/doinst.sh | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/office/apvlv/doinst.sh b/office/apvlv/doinst.sh new file mode 100644 index 0000000000000..4a9c9936ef821 --- /dev/null +++ b/office/apvlv/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... +} +config etc/apvlvrc.new |