Initial WIP version

This commit is contained in:
RealStickman 2023-05-20 16:31:51 +02:00
commit 318312848c
3 changed files with 59 additions and 0 deletions

14
.SRCINFO Normal file
View File

@ -0,0 +1,14 @@
pkgbase = nimlangserver-git
pkgver = latest.r9.gf7b32fa
pkgrel = 1
url = https://github.com/nim-lang/langserver
arch = x86_64
license = MIT
makedepends = git
depends = nim>=1.0.0
provides = nimlangserver
conflicts = nimlangserver
source = nimlangserver::git+https://github.com/nim-lang/langserver.git
sha256sums = SKIP
pkgname = nimlangserver-git

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
*.zst
/nimlangserver/
/src/

42
PKGBUILD Normal file
View File

@ -0,0 +1,42 @@
# Maintainer: RealStickman <mrc+aur _a_ frm01 _d_ net>
pkgname=nimlangserver-git
pkgver=latest.r9.gf7b32fa
pkgrel=1
pkgdesc=""
arch=('x86_64')
url="https://github.com/nim-lang/langserver"
license=('MIT')
depends=('nim>=1.0.0')
makedepends=('git') # pathutils to makedepends
# FIXME Blocker with missing pathutil library of nim (https://github.com/nim-lang/langserver/issues/22)
provides=("${pkgname%-git}")
conflicts=("${pkgname%-git}")
source=("${pkgname%-git}::git+$url.git")
sha256sums=('SKIP')
pkgver() {
cd "$srcdir/${pkgname%-git}"
git describe --long --tags | sed 's/\([^-]*-g\)/r\1/;s/-/./g'
}
build() {
# change into source
cd "$srcdir/${pkgname%-git}"
# compile program
nimble build
}
#check() {
# change into source
# cd "$srcdir/${pkgname%-git}"
# run all tests
# nimble test
#}
package() {
# create our target filestructure
mkdir -p "$pkgdir/usr/bin"
# copy executable
install -Dm755 "$srcdir/${pkgname%-git}/${pkgname%-git}" "$pkgdir/usr/bin/${pkgname%-git}"
}