terragrunt: use glide rather than raw git

This commit is contained in:
Michael Aldridge 2017-11-24 21:07:06 -08:00
parent f12ad814f6
commit 31ad6eef6d

View file

@ -6,13 +6,18 @@ build_style=go
short_desc="A thin wrapper for Terraform that provides extra tools"
maintainer="Andrea Brancaleoni <abc@pompel.me>"
depends="terraform"
hostmakedepends="git"
hostmakedepends="glide"
license="MIT"
go_import_path="github.com/gruntwork-io/$pkgname"
homepage="https://$go_import_path"
distfiles="$homepage/archive/v$version.tar.gz"
checksum=0b265cd3c7640d527fd453f92c19caf27125ed5e8b517aadb667bba026022ae8
pre_build() {
cd $GOSRCPATH
glide install
}
post_install() {
vlicense LICENSE.txt
}