add option to not install vimscripts-autoclose to /usr/share/nvim/*

because latest neovim seems to find plugins in /usr/share/vim/*
This commit is contained in:
Trent Palmer 2018-06-07 14:35:43 -07:00
parent d09c1fed4b
commit 4ba0c1b632
2 changed files with 15 additions and 2 deletions

View File

@ -1,7 +1,7 @@
pkgbase = vimscripts-autoclose
pkgdesc = plugin that automatically closes quote, parentheses, brackets, braces, etc
pkgver = 1.2
pkgrel = 1
pkgrel = 2
url = https://github.com/vim-scripts/AutoClose
arch = any
license = unknown

View File

@ -1,9 +1,18 @@
# Maintainer: Trent Palmer trenttdually at gmail
###########################################################################################################
# Build Options
###########################################################################################################
_vim="y"
# if you have a newer version of neovim you may not need or want to set _neovim="y"
_neovim="n"
###########################################################################################################
pkgname='vimscripts-autoclose'
_srcpkgname='AutoClose'
pkgver=1.2
pkgrel=1
pkgrel=2
epoch=
pkgdesc="plugin that automatically closes quote, parentheses, brackets, braces, etc"
arch=('any')
@ -27,13 +36,17 @@ md5sums=('8eb8630367d6978f3e2696df27eff4eb')
validpgpkeys=()
package() {
if [ "$_neovim" = "y" ]; then
mkdir -p "$pkgdir/usr/share/nvim/runtime"
cp -r "${srcdir}/${_srcpkgname}-${pkgver}/plugin" \
"$pkgdir/usr/share/nvim/runtime"
fi
if [ "$_vim" = "y" ]; then
mkdir -p "$pkgdir/usr/share/vim/vimfiles"
cp -r "${srcdir}/${_srcpkgname}-${pkgver}/plugin" \
"$pkgdir/usr/share/vim/vimfiles"
fi
install -D -m644 "${srcdir}/${_srcpkgname}-${pkgver}/README" $pkgdir/usr/share/doc/$pkgname/README
}