void-packages/srcpkgs/terragrunt/template
2019-09-10 23:38:27 +02:00

27 lines
662 B
Bash

# Template file for 'terragrunt'
pkgname=terragrunt
version=0.19.24
revision=1
build_style=go
go_import_path="github.com/gruntwork-io/$pkgname"
go_mod_mode=true
hostmakedepends="dep git"
depends="terraform"
short_desc="Thin wrapper for Terraform that provides extra tools"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
license="MIT"
homepage="https://github.com/gruntwork-io/terragrunt"
distfiles="$homepage/archive/v$version.tar.gz"
checksum=c2f1a045c34d4a63946f7b3051faf1fdf93a5dc5fa83893d2203906b213eab61
pre_build() {
git config --global http.https://gopkg.in.followRedirects true
cd $GOSRCPATH
dep ensure
}
post_install() {
vlicense LICENSE.txt
}