void-packages/srcpkgs/terragrunt/template
2019-10-26 13:14:11 +02:00

27 lines
661 B
Bash

# Template file for 'terragrunt'
pkgname=terragrunt
version=0.21.1
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=e344bf02bd720c051b7048f6661a8b19efe700c75908131b38c725cc43683a4f
pre_build() {
git config --global http.https://gopkg.in.followRedirects true
cd $GOSRCPATH
dep ensure
}
post_install() {
vlicense LICENSE.txt
}