summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorTaro942020-07-17 20:59:37 +0200
committerTaro942020-07-17 20:59:37 +0200
commit1739effa7af42de5dc753e04e7fdf5e407b75b3a (patch)
treecb26a32989ae310fd44d9bbb82752aa67bccbad4
downloadaur-1739effa7af42de5dc753e04e7fdf5e407b75b3a.tar.gz
NSSnippets 1.0.0
-rw-r--r--.SRCINFO13
-rw-r--r--PKGBUILD16
2 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..9a8253c21410
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,13 @@
+pkgbase = nssnippets-bin
+ pkgdesc = A command-line tool for generating NWScript VSC snippets (binary version)
+ pkgver = 1.0.0
+ pkgrel = 1
+ url = https://gitlab.com/Taro94/nwscript-snippets
+ arch = any
+ license = GPL
+ options = !strip
+ source = https://gitlab.com/Taro94/nwscript-snippets/uploads/05ea4e2fb79ec3e958947019c9357bc3/nssnippets.tar.7z
+ md5sums = 7648f0251d25a0decc810f14fd375d74
+
+pkgname = nssnippets-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..7e86c071800c
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Stanisław Jasiewicz <stjasiewicz@gmail.com>
+pkgname=nssnippets-bin
+pkgver=1.0.0
+pkgrel=1
+pkgdesc="A command-line tool for generating NWScript VSC snippets (binary version)"
+arch=('any')
+url="https://gitlab.com/Taro94/nwscript-snippets"
+license=('GPL')
+source=("https://gitlab.com/Taro94/nwscript-snippets/uploads/05ea4e2fb79ec3e958947019c9357bc3/nssnippets.tar.7z")
+md5sums=('7648f0251d25a0decc810f14fd375d74')
+options=(!strip)
+
+package() {
+ tar -xvf nssnippets.tar
+ install -Dm 755 "nssnippets" -t "$pkgdir/usr/bin"
+}