clusterctl-bin/PKGBUILD

19 lines
597 B
Text
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"
2022-02-17 21:39:00 +00:00
pkgver=1.1.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")
2022-02-17 21:39:00 +00:00
sha256sums=('c465cdc9468948a4203716ee56923000e78d992d3752a93a339faa59e8eab31d')
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
}