clusterctl-bin/PKGBUILD

23 lines
963 B
Bash
Raw Normal View History

2024-09-04 10:19:31 +00:00
# Contributor: Sergey Yakovlev <selfuryon@gmail.com>
# Maintainer: Knut Ahlers
2020-03-20 21:31:21 +00:00
pkgname=clusterctl-bin
pkgdesc="Cluster API Tool"
2024-09-04 10:19:31 +00:00
pkgver=1.8.1
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")
2024-09-04 10:19:31 +00:00
sha256sums=('04f95a7ad03f9a31aaa268f30326075fbdf2e4b8af65173543e0e445ca4bdb2e')
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"
2023-01-16 13:19:35 +00:00
install -dm0755 "$pkgdir/usr/share/zsh/site-functions/"
2023-01-16 13:11:00 +00:00
install -dm0755 "$pkgdir/usr/share/bash-completion/completions/"
2023-01-16 13:19:35 +00:00
"$pkgdir/usr/bin/clusterctl" completion zsh > "$pkgdir/usr/share/zsh/site-functions/_clusterctl"
2023-01-16 13:11:00 +00:00
"$pkgdir/usr/bin/clusterctl" completion bash > "$pkgdir/usr/share/bash-completion/completions/clusterctl"
2020-03-20 21:31:21 +00:00
}