summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: ef9e15628888c24fc930433ff5ce483337646237 (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
# Maintainer: ChemicalXandco <contact at chemicalxand dot co>

_pkgname="openscad-lsp"
pkgname="$_pkgname-git"
pkgver=1.2.1.97.g31761a2
pkgrel=1
pkgdesc="A LSP (Language Server Protocol) server for OpenSCAD."
arch=("i686" "x86_64")
url="https://github.com/Leathong/openscad-LSP"
license=("Apache")
depends=()
makedepends=("rust" "cargo" "git")
provides=("$_pkgname")
conflicts=("$_pkgname")
source=("$_pkgname::git+https://github.com/Leathong/openscad-LSP.git")
sha256sums=("SKIP")

pkgver() {
    cd "$_pkgname"
    echo "$(grep '^version =' Cargo.toml|head -n1|cut -d\" -f2).$(git rev-list --count HEAD).g$(git rev-parse --short HEAD)"
}

build() {
    cd $_pkgname
    cargo build --release --locked
}

check() {
    cd $_pkgname
    cargo test --release --locked
}

package() {
    cd "$srcdir/$_pkgname"
    install -Dm755 target/release/$_pkgname "$pkgdir/usr/bin/$_pkgname"
    install -Dm644 LICENSE-APACHE "$pkgdir/usr/share/licenses/$pkgname/LICENSE"
}