mirror of
https://github.com/TrentSPalmer/aur-packages.git
synced 2025-07-04 01:13:16 -07:00
add vim-hug-neovim-rpc-git so deoplete will work with vim
This commit is contained in:
36
vim-hug-neovim-rpc-git/PKGBUILD
Normal file
36
vim-hug-neovim-rpc-git/PKGBUILD
Normal file
@ -0,0 +1,36 @@
|
||||
# Maintainer: Trent Palmer trenttdually at gmail
|
||||
_name='vim-hug-neovim-rpc'
|
||||
pkgname="${_name}-git"
|
||||
pkgver=r81.e8af9b2
|
||||
pkgrel=1
|
||||
pkgdesc="trying to build a compatibility layer for neovim rpc client working on vim8"
|
||||
arch=('any')
|
||||
url="https://github.com/roxma/vim-hug-neovim-rpc"
|
||||
license=('unknown')
|
||||
groups=()
|
||||
depends=('vim' 'python-neovim')
|
||||
optdepends=('nvim-yarp')
|
||||
makedepends=('git')
|
||||
provides=('vim-hug-neovim-rpc')
|
||||
conflicts=()
|
||||
replaces=('')
|
||||
backup=()
|
||||
options=()
|
||||
# maybe at some point there will be helptags to update
|
||||
install="${_name}.install"
|
||||
source=("${_name}::${url//https/git}")
|
||||
noextract=()
|
||||
md5sums=('SKIP')
|
||||
|
||||
pkgver() {
|
||||
cd "${srcdir}/${_name}"
|
||||
printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
|
||||
}
|
||||
|
||||
package() {
|
||||
mkdir -p "$pkgdir/usr/share/vim/vimfiles"
|
||||
cp -r "${srcdir}/${_name}/"{autoload,pythonx} \
|
||||
"$pkgdir/usr/share/vim/vimfiles"
|
||||
|
||||
install -D -m644 "${srcdir}/${_name}/README.md" $pkgdir/usr/share/doc/$pkgname/README.md
|
||||
}
|
Reference in New Issue
Block a user