summarylogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.SRCINFO5
-rw-r--r--PKGBUILD3
-rw-r--r--vimdoc.install14
3 files changed, 3 insertions, 19 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 6d6efb205bf3..3d0d9feb98b8 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,11 +1,10 @@
# Generated by mksrcinfo v8
-# Fri Dec 23 20:56:18 UTC 2016
+# Wed Apr 19 01:52:31 UTC 2017
pkgbase = vim-gundo
pkgdesc = Vim plugin to visualize your Vim undo tree
pkgver = 2.6.2
- pkgrel = 1
+ pkgrel = 2
url = http://www.vim.org/scripts/script.php?script_id=3304
- install = vimdoc.install
arch = any
groups = vim-plugins
license = GPL2
diff --git a/PKGBUILD b/PKGBUILD
index 20d9248357b3..3765569ef3fe 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,14 +3,13 @@
pkgname=vim-gundo
pkgver=2.6.2
-pkgrel=1
+pkgrel=2
pkgdesc='Vim plugin to visualize your Vim undo tree'
arch=('any')
url='http://www.vim.org/scripts/script.php?script_id=3304'
license=('GPL2')
depends=('vim>=7.3')
groups=('vim-plugins')
-install=vimdoc.install
source=("https://github.com/sjl/${pkgname#vim-}.vim/archive/v$pkgver.tar.gz")
sha256sums=('eeb279f41ea3651bccced8a3f609d40e8cf914eb8ebdf403acac21af68e1b4a0')
diff --git a/vimdoc.install b/vimdoc.install
deleted file mode 100644
index 73d0dc8818a5..000000000000
--- a/vimdoc.install
+++ /dev/null
@@ -1,14 +0,0 @@
-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
-}