summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorSimon Cruanes2021-06-14 12:29:30 -0400
committerSimon Cruanes2021-06-14 12:29:30 -0400
commiteea2cc7acd6a0a66384ba201fab95d55c7ea7427 (patch)
tree095832185e50f137bacf2bfde2b0dad08d25a438
downloadaur-eea2cc7acd6a0a66384ba201fab95d55c7ea7427.tar.gz
initial commit
-rw-r--r--.SRCINFO12
-rw-r--r--.gitignore1
-rw-r--r--PKGBUILD16
3 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..264872f8ca5e
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = dolmenls
+ pkgdesc = LSP server for Dolmen
+ pkgver = 0.6
+ pkgrel = 0
+ url = https://github.com/gbury/dolmen
+ arch = x86_64
+ license = BSD-2-Clauses
+ source = https://github.com/Gbury/dolmen/releases/download/v0.6/dolmenls-linux-amd64
+ md5sums = 17264149b92f056676cb1884c8dcdd22
+
+pkgname = dolmenls
+
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..dd38fa22d95f
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1 @@
+*.tar*
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..a0f4d2896c69
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Simon Cruanes <simon.cruanes.2007@m4x.org>
+pkgname=dolmenls
+pkgver=0.6
+pkgrel=0
+pkgdesc="LSP server for Dolmen"
+arch=('x86_64')
+url="https://github.com/gbury/dolmen"
+license=('BSD-2-Clauses')
+depends=()
+source=("https://github.com/Gbury/dolmen/releases/download/v0.6/dolmenls-linux-amd64")
+md5sums=('17264149b92f056676cb1884c8dcdd22')
+
+package() {
+ install -D dolmenls-linux-amd64 "$pkgdir/usr/bin/dolmenls"
+}
+