summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 7011e77e5d6202e42c210ef3f3ec1e76ff156345 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Maintainer: Muhkoenig

pkgname=kubernetes-helm-bin
pkgver=2.9.1
pkgrel=1
pkgdesc="The Kubernetes Package Manager"
url="https://github.com/kubernetes/helm"
license=('Apache')
arch=('x86_64')
optdepends=(
  'kubectl-bin: to manage the cluster'
)

source=("https://storage.googleapis.com/kubernetes-helm/helm-v$pkgver-linux-amd64.tar.gz")
sha256sums=('56ae2d5d08c68d6e7400d462d6ed10c929effac929fedce18d2636a9b4e166ba')
package() {
  cd "$srcdir"
  install -d "$pkgdir/usr/bin"
  install -m755 linux-amd64/helm "$pkgdir/usr/bin/helm"
}