summaryrefslogtreecommitdiffstats
path: root/office/apvlv/doinst.sh
diff options
context:
space:
mode:
author Arne Welzel2011-07-17 02:51:11 +0200
committer Robby Workman2011-07-17 02:51:11 +0200
commite3e945dc02f02968a8a3e10654f5def0ea421612 (patch)
treeaed65788dfd52a15202e81afa0b6ec4586ee0783 /office/apvlv/doinst.sh
parent43241823528dd4e8b5b5aba5d5574569ba28bca2 (diff)
downloadslackbuilds-e3e945dc02f02968a8a3e10654f5def0ea421612.tar.gz
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.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/office/apvlv/doinst.sh b/office/apvlv/doinst.sh
new file mode 100644
index 0000000000..4a9c9936ef
--- /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