summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorToni Tauro2021-04-20 13:58:34 +0200
committerToni Tauro2021-04-20 13:58:34 +0200
commitc2cdd891b3acc7595689cc234a860e512fcf724a (patch)
tree85ecb23de17317b4cb604745821d2479890a12f4
downloadaur-c2cdd891b3acc7595689cc234a860e512fcf724a.tar.gz
feat(init): release
Signed-off-by: Toni Tauro <eye@eyenx.ch>
-rw-r--r--.SRCINFO12
-rw-r--r--PKGBUILD16
2 files changed, 28 insertions, 0 deletions
diff --git a/.SRCINFO b/.SRCINFO
new file mode 100644
index 000000000000..ad52427abe5b
--- /dev/null
+++ b/.SRCINFO
@@ -0,0 +1,12 @@
+pkgbase = kubepug-bin
+ pkgdesc = Kubernetes PreUpGrade (Checker)
+ pkgver = 1.1.3
+ pkgrel = 1
+ url = https://github.com/rikatz/kubepug
+ arch = x86_64
+ license = Apache
+ source = https://github.com/rikatz/kubepug/releases/download/v1.1.3/kubepug_linux_amd64.tar.gz
+ sha256sums = 9ca8970c77faa4fac11a6571862372debe7e87fc9e0b54053a3279fcb7e4ffe4
+
+pkgname = kubepug-bin
+
diff --git a/PKGBUILD b/PKGBUILD
new file mode 100644
index 000000000000..2d3a39916643
--- /dev/null
+++ b/PKGBUILD
@@ -0,0 +1,16 @@
+# Maintainer: Toni Tauro <eye@eyenx.ch>
+# Co-Maintainer: Lukas Grossar <lukasgrossar@gmail.com>
+
+pkgname=kubepug-bin
+pkgver=1.1.3
+pkgrel=1
+pkgdesc="Kubernetes PreUpGrade (Checker)"
+arch=('x86_64')
+url="https://github.com/rikatz/kubepug"
+license=('Apache')
+source=("https://github.com/rikatz/kubepug/releases/download/v${pkgver}/kubepug_linux_amd64.tar.gz")
+sha256sums=('9ca8970c77faa4fac11a6571862372debe7e87fc9e0b54053a3279fcb7e4ffe4')
+
+package() {
+ install -Dm 755 "$srcdir/kubepug" "$pkgdir/usr/bin/kubepug"
+}