blob: 40e07c04fddf52c31eb7ab7f301967546d5d0c43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
|
# Maintainer: Benjamin Denhartog <ben@sudoforge.com>
# For ISSUES, REQUESTS, and QUESTIONS:
# https://github.com/sudoforge/pkgbuilds
_pkgname=LanguageClient-neovim
pkgname=languageclient-neovim
pkgver=0.1.161
pkgrel=2
pkgdesc="Language Server Protocol (LSP) support for Vim and NeoVim."
url="https://github.com/autozimu/LanguageClient-neovim"
license=('MIT')
arch=('x86_64')
makedepends=(
'cargo'
'git'
)
source=("${pkgname}-${pkgver}.tar.gz::${url}/archive/${pkgver}.tar.gz")
sha256sums=('0fc542e3f188ea998fdd74372d45f522be94614a04011cb11b244d81b25a738c')
build() {
cd "${srcdir}/${_pkgname}-${pkgver}"
cargo build --release
}
package() {
cd "${srcdir}/${_pkgname}-${pkgver}"
# Install the license file
install -D -m 644 \
"LICENSE.txt" \
"${pkgdir}/usr/share/licenses/${pkgname}/LICENSE.txt"
# Install the built executable to local bin/ directory to take advantage of
# the iterative copying, below. `install` is used to ensure the correct
# mode is set.
install -D -m 755 \
"target/release/${pkgname%-neovim}" \
"bin/${pkgname%-neovim}"
# Create runtime directories
install -d -m 755 "${pkgdir}/usr/share/vim/vimfiles"
install -d -m 755 "${pkgdir}/usr/share/nvim/runtime"
# Install vimfiles from the project into the appropriate runtime directories
for d in autoload bin doc plugin rplugin; do
case $d in
rplugin)
# vim doesn't have "remote plugins", so we only need to move this into
# neovim's runtime directory
cp -r "$d" "${pkgdir}/usr/share/nvim/runtime"
;;
*)
cp -r "$d" "${pkgdir}/usr/share/vim/vimfiles"
cp -r "$d" "${pkgdir}/usr/share/nvim/runtime"
esac
done
}
|