summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 433af535780047ef8d9ee12debf472a9156d519b (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
# Maintainer: Julius Schumacher <juliusschumacher@gmail.com>
pkgname=erlang_ls-git
pkgver=r704.9eb3e93
pkgrel=1
pkgdesc="Erlang Language Server Protocol Implementation"
arch=(x86_64)
url="https://github.com/erlang-ls/erlang_ls"
license=('Apache')
groups=()
depends=(erlang rebar3)
makedepends=('git') # 'bzr', 'git', 'mercurial' or 'subversion'
provides=("${pkgname%-VCS}")
conflicts=("${pkgname%-VCS}")
replaces=()
backup=()
options=()
install=
source=('git+https://github.com/erlang-ls/erlang_ls')
noextract=()
md5sums=('SKIP')

pkgver() {
	cd "$srcdir/${pkgname%-git}"

# Git, tags available
	#printf "%s" "$(git describe --long | sed 's/\([^-]*-\)g/r\1/;s/-/./g')"

# Git, no tags available
	printf "r%s.%s" "$(git rev-list --count HEAD)" "$(git rev-parse --short HEAD)"
}

build() {
	cd "$srcdir/${pkgname%-git}"
	make
}

package() {
	install -Dm755 \
		"$srcdir/${pkgname%-git}/_build/default/bin/erlang_ls" \
		"$pkgdir/usr/bin/erlang_ls"

}