summaryrefslogtreecommitdiffstats
path: root/vim-nerdtree
diff options
context:
space:
mode:
Diffstat (limited to 'vim-nerdtree')
-rw-r--r--vim-nerdtree/PKGBUILD26
-rw-r--r--vim-nerdtree/license.txt8
-rw-r--r--vim-nerdtree/vimdoc.install19
3 files changed, 0 insertions, 53 deletions
diff --git a/vim-nerdtree/PKGBUILD b/vim-nerdtree/PKGBUILD
deleted file mode 100644
index 80bb044..0000000
--- a/vim-nerdtree/PKGBUILD
+++ /dev/null
@@ -1,26 +0,0 @@
-# Maintainer: Laszlo Papp <djszapi @ gmail at com>
-pkgname=vim-nerdtree
-pkgver=4.1.0
-_scriptid=11834
-pkgrel=4
-pkgdesc="A tree explorer plugin for navigating the filesystem"
-arch=('i686' 'x86_64')
-url="http://www.vim.org/scripts/script.php?script_id=1658"
-license=('custom')
-depends=(vim)
-groups=('vim-plugins')
-install=vimdoc.install
-source=(${pkgname}.zip::http://www.vim.org/scripts/download_script.php?src_id=${_scriptid}
- license.txt)
-md5sums=('a15fa66b36c3261e598d93dc830398f6'
- 'efbd5986e691ce8c876fb86e8f5961ea')
-
-build() {
- install -d ${pkgdir}/usr/share/vim/vimfiles/{doc,nerdtree_plugin,plugin} || return 1
- install -Dm755 ${srcdir}/doc/* ${pkgdir}/usr/share/vim/vimfiles/doc/ || return 1
- install -Dm755 ${srcdir}/nerdtree_plugin/* \
- ${pkgdir}/usr/share/vim/vimfiles/nerdtree_plugin/ || return 1
- install -Dm755 ${srcdir}/plugin/* ${pkgdir}/usr/share/vim/vimfiles/plugin/ || return 1
- install -Dm755 ${srcdir}/license.txt ${pkgdir}/usr/share/licenses/${pkgname}/license.txt || return 1
-}
-
diff --git a/vim-nerdtree/license.txt b/vim-nerdtree/license.txt
deleted file mode 100644
index 226f27b..0000000
--- a/vim-nerdtree/license.txt
+++ /dev/null
@@ -1,8 +0,0 @@
-Copyright (C) 2002-2007 Yegappan Lakshmanan
-Permission is hereby granted to use and distribute this code,
-with or without modifications, provided that this copyright
-notice is copied with it. Like anything else that's free,
-taglist.vim is provided *as is* and comes with no warranty of any
-kind, either expressed or implied. In no event will the copyright
-holder be liable for any damamges resulting from the use of this
-software.
diff --git a/vim-nerdtree/vimdoc.install b/vim-nerdtree/vimdoc.install
deleted file mode 100644
index 220693c..0000000
--- a/vim-nerdtree/vimdoc.install
+++ /dev/null
@@ -1,19 +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 $*