summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: bb55834ab4165a08281068cc74234df43d05e9a1 (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.6.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=('5e90d8ad17ba42e67dad97b5c2230707beadd2635f89d6ccc96f8a92777c42c4')
package() {
  cd "$srcdir"
  install -d "$pkgdir/usr/bin"
  install -m755 linux-amd64/helm "$pkgdir/usr/bin/helm"
}