clusterctl-bin/PKGBUILD

22 lines
960 B
Bash
Raw Normal View History

2020-03-20 21:31:21 +00:00
# Maintainer: Sergey Yakovlev <selfuryon@gmail.com>
pkgname=clusterctl-bin
pkgdesc="Cluster API Tool"
2023-01-16 13:11:00 +00:00
pkgver=1.3.2
2020-03-20 21:31:21 +00:00
pkgrel=1
arch=('x86_64')
url="https://cluster-api.sigs.k8s.io/"
license=('Apache')
optdepends=('kubectl: to manage the cluster')
2020-04-29 21:50:00 +00:00
provides=('clusterctl')
source=("clusterctl-linux-amd64-v$pkgver::https://github.com/kubernetes-sigs/cluster-api/releases/download/v$pkgver/clusterctl-linux-amd64")
2023-01-16 13:11:00 +00:00
sha256sums=('d57adc75cd4359a9f660b2ecbbd0ef82ebfa643c1218a6ca8ca1778bdda72380')
2020-03-20 21:31:21 +00:00
package() {
2023-01-16 13:11:00 +00:00
install -Dm0755 "$srcdir/clusterctl-linux-amd64-v$pkgver" "$pkgdir/usr/bin/clusterctl"
install -dm0755 "$pkgdir/usr/share/zsh-completions/site-functions/"
install -dm0755 "$pkgdir/usr/share/bash-completion/completions/"
"$pkgdir/usr/bin/clusterctl" completion zsh > "$pkgdir/usr/share/zsh-completions/site-functions/_clusterctl"
"$pkgdir/usr/bin/clusterctl" completion bash > "$pkgdir/usr/share/bash-completion/completions/clusterctl"
2020-03-20 21:31:21 +00:00
}