blob: 4b29854a21d790b94fd74be83d3436457e4e9bf7 (
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
|
# Maintainer: KokaKiwi <kokakiwi@kokakiwi.net>
_pkgname=elixir-ls
pkgname=elixir-ls-git
pkgver=0.20.0.r10.ga6f5d8ab
pkgrel=1
pkgdesc='A frontend-independent Language Server Protocol for Elixir'
url='https://github.com/elixir-lsp/elixir-ls'
license=('Apache-2.0')
arch=('any')
depends=('elixir' 'erlang-nox')
makedepends=('git' 'rebar3')
provides=('elixir-ls')
conflicts=('elixir-ls')
source=("${_pkgname}::git+https://github.com/elixir-lsp/elixir-ls.git")
sha256sums=('SKIP')
pkgver() {
cd "${_pkgname}"
git describe --long --tags | sed 's/^v//;s/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
cd "${_pkgname}"
export MIX_ENV=prod
export MIX_HOME="${srcdir}/mix-cache"
# Fetch hex for deps.get to work
mix local.hex --force
# Use arch/AUR-provided rebar3 since the one from hex CDN is outdated.
mix local.rebar --force rebar3 /usr/bin/rebar3
mix deps.get
mix compile
}
package() {
cd "${_pkgname}"
export MIX_ENV=prod
install -dm0755 "${pkgdir}"/usr/lib/${_pkgname}
mix elixir_ls.release2 -o "${pkgdir}"/usr/lib/${_pkgname}
install -dm0755 "${pkgdir}"/usr/bin
echo -e "#!/bin/sh\nexec /usr/lib/${_pkgname}/language_server.sh" > "${pkgdir}"/usr/bin/elixir-ls
echo -e "#!/bin/sh\nexec /usr/lib/${_pkgname}/debugger.sh" > "${pkgdir}"/usr/bin/elixir-ls-debug
chmod +x "${pkgdir}"/usr/bin/*
}
|