void-packages/srcpkgs/terraform/template
2016-09-07 10:02:12 +02:00

30 lines
759 B
Bash

# Template file for 'terraform'
pkgname=terraform
version=0.7.3
revision=1
build_style=go
short_desc="A tool for building, changing, and combining infrastructure"
maintainer="Andrea Brancaleoni <miwaxe@gmail.com>"
license="MPL-2.1"
homepage="https://www.terraform.io/"
go_import_path="github.com/hashicorp/$pkgname"
distfiles="https://$go_import_path/archive/v$version.tar.gz"
checksum=dbbb755236af0ebd98ea892f12b0780731bab650583db3626129b9ec399352ce
post_build() {
for F in $(find -type f -name main.go); do
go get -x $go_import_path/${F%/*}
done
}
do_install() {
find "${GOPATH}/bin" -type f -executable | while read line
do
if [ "$(basename $line)" = terraform ]; then
vbin $line
else
vbin $line terraform-$(basename $line)
fi
done
}