blob: ec6cae6cd11c3d4a7d2a88ab0666ed2d4dfdfd7b (
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
|
# Maitainer: Loek Le Blansch <loek@pipeframe.xyz>
pkgname=arduino-language-server-git
pkgver=1.0.0
pkgrel=1
epoch=1
pkgdesc="An Arduino Language Server based on Clangd to Arduino code autocompletion"
arch=('any')
makedepends=('git' 'go')
url="https://github.com/arduino/arduino-language-server"
license=('APACHE')
source=(git+https://github.com/arduino/arduino-language-server)
sha256sums=('SKIP')
provides=('arduino-language-server')
conflicts=('arduino-language-server')
pkgver() {
cd ${pkgname}
git describe --tags | sed "s+-+.r+" | tr - .
}
build() {
cd ${pkgname}
msg2 'Building...'
go build
}
package() {
cd ${pkgname}
msg2 'Installing executables...'
install -Dm 755 arduino-language-server -t "$pkgdir"/usr/bin
msg2 'Cleaning up pkgdir...'
find "$pkgdir" -type d -name .git -exec rm -r '{}' +
}
|