summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorParaSait2022-06-21 12:49:40 +0200
committerParaSait2022-06-21 12:49:40 +0200
commit42aef35c1149f1cf0c637e58bf692892e74b3883 (patch)
tree5c973c6f519ea3743756819f48c43cce95744f57
downloadaur-42aef35c1149f1cf0c637e58bf692892e74b3883.tar.gz
Version 0.7.0
-rw-r--r--.SRCINFO11
-rw-r--r--.gitignore4
-rw-r--r--PKGBUILD14
3 files changed, 29 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..6f916d9dfe83
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,11 @@
+pkgbase = json-ld-cli-bin
+ pkgdesc = A simple command line utility allowing to process JSON-LD 1.1 documents.
+ pkgver = 0.7.0
+ pkgrel = 1
+ url = https://github.com/filip26/json-ld-cli
+ arch = any
+ license = Apache
+ source = https://github.com/filip26/json-ld-cli/releases/download/v0.7.0/json-ld-cli-0.7.0-ubuntu-latest.zip
+ sha256sums = 57fc2d98cec3e2a8c0d6270aa078e93b5bf36f53093af10365906922c4c138a0
+
+pkgname = json-ld-cli-bin
diff --git a/.gitignore b/.gitignore
new file mode 100644
index 000000000000..710cb74c6ceb
--- /dev/null
+++ b/.gitignore
@@ -0,0 +1,4 @@
+*.zip
+*.zst
+pkg
+src
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..9a948dbe8337
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,14 @@
+# Maintainer: ParaSait <parasait at proton dot me>
+pkgname=json-ld-cli-bin
+pkgver=0.7.0
+pkgrel=1
+pkgdesc='A simple command line utility allowing to process JSON-LD 1.1 documents.'
+arch=('any')
+url='https://github.com/filip26/json-ld-cli'
+license=('Apache')
+source=("${url}/releases/download/v${pkgver}/json-ld-cli-${pkgver}-ubuntu-latest.zip")
+sha256sums=('57fc2d98cec3e2a8c0d6270aa078e93b5bf36f53093af10365906922c4c138a0')
+
+package() {
+ install -Dm 755 "jsonld" "$pkgdir/usr/bin/jsonld"
+}