24 lines
567 B
Bash
24 lines
567 B
Bash
# Template file for 'terragrunt'
|
|
pkgname=terragrunt
|
|
version=0.14.10
|
|
revision=1
|
|
build_style=go
|
|
short_desc="A thin wrapper for Terraform that provides extra tools"
|
|
maintainer="Andrea Brancaleoni <abc@pompel.me>"
|
|
depends="terraform"
|
|
hostmakedepends="glide git"
|
|
license="MIT"
|
|
go_import_path="github.com/gruntwork-io/$pkgname"
|
|
homepage="https://$go_import_path"
|
|
distfiles="$homepage/archive/v$version.tar.gz"
|
|
checksum=088eaeacd965ade353fa98bdb4e7be0348df00f8850b0299756e269b663a739a
|
|
|
|
pre_build() {
|
|
cd $GOSRCPATH
|
|
glide install
|
|
}
|
|
|
|
post_install() {
|
|
vlicense LICENSE.txt
|
|
}
|