summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorChristian Rebischke2016-11-14 00:00:55 +0100
committerChristian Rebischke2016-11-14 00:00:55 +0100
commitf9353ae196aebd2e24273f862eb668a3deba287b (patch)
treed8005dbea17381d892392ac358cc3ab590a0b3b8
parent80dc3b8cd7bdaf62b8edb569bd071ed037f9a7d8 (diff)
downloadaur-f9353ae196aebd2e24273f862eb668a3deba287b.tar.gz
removed .install file.. we have pacman hooks now
-rw-r--r--.SRCINFO3
-rw-r--r--PKGBUILD3
-rw-r--r--vimdoc.install20
3 files changed, 2 insertions, 24 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 0f22cb43f88d..d95bef654f80 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,9 +1,8 @@
pkgbase = vim-devicons
pkgdesc = Adds file type glyphs/icons to many popular Vim plugins such as: NERDTree, vim-airline, unite, vim-startify and many more
pkgver = 0.8.5
- pkgrel = 1
+ pkgrel = 3
url = https://github.com/ryanoasis/vim-devicons
- install = vimdoc.install
arch = any
groups = vim-plugins
license = MIT
diff --git a/PKGBUILD b/PKGBUILD
index 2e6547b90250..d0e2cb669b4d 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -1,14 +1,13 @@
# Maintainer: Christian Rebischke <chris.rebischke[at]archlinux[dot]org>
pkgname=vim-devicons
pkgver=0.8.5
-pkgrel=2
+pkgrel=3
pkgdesc='Adds file type glyphs/icons to many popular Vim plugins such as: NERDTree, vim-airline, unite, vim-startify and many more'
arch=('any')
url='https://github.com/ryanoasis/vim-devicons'
license=('MIT')
depends=('vim')
groups=('vim-plugins')
-install="vimdoc.install"
source=("${pkgname}-${pkgver}.tar.gz::https://github.com/ryanoasis/vim-devicons/archive/v${pkgver}.tar.gz")
sha512sums=('5212116d59d438ade193a4c82255e51c5be04e662765c9ddda372480c46680c3ddee726fa8fa8b8d1b3047e9c1435144e9c0847c63ee6ebd3c4eee943780ed37')
diff --git a/vimdoc.install b/vimdoc.install
deleted file mode 100644
index 1239c9df3be5..000000000000
--- a/vimdoc.install
+++ /dev/null
@@ -1,20 +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 $1
-}
-
-post_remove() {
- post_install
-}
-
-op=$1
-shift
-
-$op $*
-