Files
k0s-bin/PKGBUILD
2020-12-01 17:05:24 +01:00

17 lines
512 B
Bash

# Maintainer: Toni Tauro <eye@eyenx.ch>
# Co-Maintainer: Lukas Grossar <lukasgrossar@gmail.com>
pkgname=k0s-bin
pkgver=0.8.0
pkgrel=1
pkgdesc="k0s - 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=('90d2de4aa2464f1d6276b60599dab53919a7a0f5dc53e3d5a8a09f0538e504d6')
package() {
install -Dm 755 "$srcdir/k0s-v${pkgver}-amd64" "$pkgdir/usr/bin/k0s"
}