31 lines
759 B
Bash
31 lines
759 B
Bash
# Template file for 'terraform'
|
|
pkgname=terraform
|
|
version=0.7.2
|
|
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=ccea0fe6948ef801ecd3f000202534e735766bc489f976bec9722fb5daa62a67
|
|
|
|
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
|
|
}
|