summarylogtreecommitdiffstats
path: root/vimdoc.install
diff options
context:
space:
mode:
authorRhinoceros2015-06-09 08:47:18 +1000
committerRhinoceros2015-06-09 08:47:18 +1000
commit07bde278fcfe50904cf29cc7a3db7a6eb0a13f7c (patch)
tree2702d8d235d5adeb1cf4877a71bfd501586ac373 /vimdoc.install
downloadaur-07bde278fcfe50904cf29cc7a3db7a6eb0a13f7c.tar.gz
Initial commit of git version
* vim-startify is no longer offered as a versioned release. Sourcing from git is the only way to get it. * This package is based on vim-startify * Correct url, licence, depends, use install, add vimdoc.install, other minor cleanups
Diffstat (limited to 'vimdoc.install')
-rw-r--r--vimdoc.install16
1 files changed, 16 insertions, 0 deletions
diff --git a/vimdoc.install b/vimdoc.install
new file mode 100644
index 000000000000..1f6a30927ea2
--- /dev/null
+++ b/vimdoc.install
@@ -0,0 +1,16 @@
+post_install() {
+ echo -n 'Updating vim help tags...'
+ /usr/bin/vim --noplugins -u NONE -U NONE \
+ --cmd ":helptags /usr/share/vim/vimfiles/doc" --cmd ":q" > /dev/null 2>&1
+ echo 'done.'
+}
+
+post_upgrade() {
+ post_install
+}
+
+post_remove() {
+ post_install
+}
+
+# vim:set ts=2 sw=2 et: