summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorDuologic2020-01-03 14:51:53 +0100
committerDuologic2020-01-03 14:51:53 +0100
commite3910fd88e86210ebbb878a96addc2f085c30c7b (patch)
treedfe48b6c4d182c89e2ec33ead747e681a5f56344
downloadaur-e3910fd88e86210ebbb878a96addc2f085c30c7b.tar.gz
Add tanka package
-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..8a3860517239
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = tanka-bin
+ pkgdesc = Flexible, reusable and concise configuration for Kubernetes
+ pkgver = 0.6.0
+ pkgrel = 1
+ url = https://github.com/grafana/tanka
+ arch = x86_64
+ license = Apache
+ source = https://github.com/grafana/tanka/releases/download/v0.6.0/tk-linux-amd64
+ sha256sums = 3b378ecb362a3259ed7a7db311b106fdced48ac4019bc492118973a66daac364
+
+pkgname = tanka-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..4947d7f1ac0b
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,15 @@
+# Maintainer: Duologic <jeroen@simplsitic.be>
+
+pkgname=tanka-bin
+pkgver=0.6.0
+pkgrel=1
+pkgdesc="Flexible, reusable and concise configuration for Kubernetes"
+arch=('x86_64')
+url="https://github.com/grafana/tanka"
+license=('Apache')
+source=("https://github.com/grafana/tanka/releases/download/v${pkgver}/tk-linux-amd64")
+sha256sums=('3b378ecb362a3259ed7a7db311b106fdced48ac4019bc492118973a66daac364')
+
+package() {
+ install -Dm 755 "$srcdir/tk-linux-amd64" "$pkgdir/usr/bin/tk"
+}