feat(v0.7.0): init

This commit is contained in:
Toni Tauro
2020-11-17 22:52:32 +01:00
commit 89541da609
2 changed files with 28 additions and 0 deletions

16
PKGBUILD Normal file
View File

@@ -0,0 +1,16 @@
# Maintainer: Toni Tauro <eye@eyenx.ch>
# Co-Maintainer: Lukas Grossar <lukasgrossar@gmail.com>
pkgname=k0s-bin
pkgver=0.7.0
pkgrel=1
pkgdesc="zero friction kubernetes"
arch=('x86_64')
url="https://github.com/k0sproject/k0s"
license=('Apache')
source=("https://github.com/k0sproject/k0s/releases/download/v${pkgver}/k0s-v${pkgver}-amd64")
sha256sums=('27547d7273757cceb0310672e934f171f9a1e3d8f46bb6e97e14d263bf80f011')
package() {
install -Dm 755 "$srcdir/k0s-v${pkgver}-amd64" "$pkgdir/usr/bin/k0s"
}