clusterctl-bin/PKGBUILD

19 lines
597 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"
2021-09-20 19:07:39 +00:00
pkgver=0.4.3
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")
2021-09-20 19:07:39 +00:00
sha256sums=('85543456f01721962d3ffa8fedb63818471c75c63df0f925f4dd06414bd8d749')
2020-03-20 21:31:21 +00:00
package() {
install -Dm 755 "$srcdir/clusterctl-linux-amd64-v$pkgver" "$pkgdir/usr/bin/clusterctl"
2020-03-20 21:31:21 +00:00
}