Files
k0sctl-bin/PKGBUILD
Toni Tauro ea78d3f72b fix(k0sctl): conflicts/provides
Signed-off-by: Toni Tauro <eye@eyenx.ch>
2024-01-07 11:47:33 +01:00

24 lines
1021 B
Bash

# Maintainer: Toni Tauro <eye@eyenx.ch>
# Co-Maintainer: Lukas Grossar <lukasgrossar@gmail.com>
pkgname=k0sctl-bin
pkgver=0.17.1
pkgrel=2
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=('88dfa553d44c9826702b410bf2e3d927d7cd42006aaa5175158f148e7de33c1b')
options=(!strip)
provides=(k0sctl)
conflicts=(k0sctl)
package() {
install -Dm 755 "$srcdir/k0sctl-linux-x64-$pkgver" "$pkgdir/usr/bin/k0sctl"
"$pkgdir/usr/bin/k0sctl" completion --shell bash | install -Dm644 /dev/stdin "$pkgdir/usr/share/bash-completion/completions/k0sctl"
"$pkgdir/usr/bin/k0sctl" completion --shell zsh | install -Dm644 /dev/stdin "$pkgdir/usr/share/zsh/site-functions/_k0sctl"
"$pkgdir/usr/bin/k0sctl" completion --shell fish | install -Dm644 /dev/stdin "$pkgdir/usr/share/fish/vendor_completions.d/k0sctl.fish"
}