18 lines
591 B
Bash
18 lines
591 B
Bash
# Maintainer: Toni Tauro <eye@eyenx.ch>
|
|
# Co-Maintainer: Lukas Grossar <lukasgrossar@gmail.com>
|
|
|
|
pkgname=k0sctl-bin
|
|
pkgver=0.12.0
|
|
pkgrel=1
|
|
pkgdesc="A bootstrapping and management tool for k0s clusters."
|
|
arch=('x86_64')
|
|
url="https://github.com/k0sproject/k0sctl"
|
|
license=('Apache')
|
|
source=("k0sctl-linux-x64-$pkgver::https://github.com/k0sproject/k0sctl/releases/download/v${pkgver}/k0sctl-linux-x64")
|
|
sha256sums=('ba285bed8a5e385768ed50629e12583a45a6a93fdf4f81bf1c7f71ae6fefcf0d')
|
|
options=(!strip)
|
|
|
|
package() {
|
|
install -Dm 755 "$srcdir/k0sctl-linux-x64-$pkgver" "$pkgdir/usr/bin/k0sctl"
|
|
}
|