summarylogtreecommitdiffstats
path: root/PKGBUILD
blob: 78c83cb77de4f8139a2a30c717a38b4b81281496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# $Id$
# Contributor: Enmanuel Moreira <enmanuelmoreira@gmail.com>

_name=kubergrunt
pkgname=kubergrunt
pkgver=0.9.0
pkgrel=1
pkgdesc="Kubergrunt is a standalone go binary with a collection of commands to fill in the gaps between Terraform, Helm, and Kubectl"
arch=('x86_64')
url="https://github.com/gruntwork-io/kubergrunt"
optdepends=('terraform' 
            'kubectl' 
            'helm'
          )
license=('Apache-2')
source=("https://github.com/gruntwork-io/${_name}/releases/download/v${pkgver}/${_name}_linux_amd64")
sha256sums=('279f895eb9b29595ae795a6e7587ade6a8a3b95c74b4497ce795f75da20793ef')

package() {
  cd "${srcdir}"
  install -Dm755 ${_name}_linux_amd64 ${pkgdir}/usr/bin/${_name}
}