summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Grossar2019-06-19 14:06:12 +0200
committerLukas Grossar2019-06-19 14:06:12 +0200
commita317108b20b859b0d3f98df2e653806b210df2d8 (patch)
treeaf3b77a01da0642d9dc0c2ff33995da09eeea607
downloadaur-a317108b20b859b0d3f98df2e653806b210df2d8.tar.gz
initial release of 0.1.0
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD15
2 files changed, 27 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..372ec0f7bf15
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = jsonnet-bundler-bin
+ pkgdesc = jsonnet package manager
+ pkgver = 0.1.0
+ pkgrel = 1
+ url = https://github.com/jsonnet-bundler/jsonnet-bundler
+ arch = x86_64
+ license = Apache
+ source = https://github.com/jsonnet-bundler/jsonnet-bundler/releases/download/v0.1.0/jb-linux-amd64
+ sha256sums = 700a311803565f06f61d03449cc28dc320df8853b491124c1f25a6543e0c79c9
+
+pkgname = jsonnet-bundler-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..0a7083452774
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
+# Maintainer: Lukas Grossar <lukas.grossar@gmail.com>
+
+pkgname=jsonnet-bundler-bin
+pkgver=0.1.0
+pkgrel=1
+pkgdesc="jsonnet package manager"
+arch=('x86_64')
+url="https://github.com/jsonnet-bundler/jsonnet-bundler"
+license=('Apache')
+source=("https://github.com/jsonnet-bundler/jsonnet-bundler/releases/download/v${pkgver}/jb-linux-amd64")
+sha256sums=('700a311803565f06f61d03449cc28dc320df8853b491124c1f25a6543e0c79c9')
+
+package() {
+ install -Dm 755 "$srcdir/jb-linux-amd64" -t "$pkgdir/usr/bin"
+}