1
1
mirror of https://github.com/adammck/terraform-inventory synced 2024-11-23 04:22:08 +01:00
terraform-inventory/homebrew/terraform-inventory.rb
2015-07-22 14:17:19 +01:00

33 lines
1.0 KiB
Ruby

class TerraformInventory < Formula
homepage "https://github.com/adammck/terraform-inventory"
head "https://github.com/adammck/terraform-inventory.git"
# Update these when a new version is released
url "https://github.com/adammck/terraform-inventory/archive/v0.5.tar.gz"
sha1 "8dcb83171d5cf323d6d4a52779f91aeaed2f195e"
depends_on "go" => :build
def install
ENV["GOPATH"] = buildpath
# Move the contents of the repo (which are currently in the buildpath) into
# a go-style subdir, so we can build it without spewing deps everywhere.
app_path = buildpath/"src/github.com/adammck/terraform-inventory"
app_path.install Dir["*"]
# Fetch the deps (into our temporary gopath) and build
cd "src/github.com/adammck/terraform-inventory" do
system "go", "get"
system "go", "build", "-ldflags", "-X main.build_version '#{version}'"
end
# Install the resulting binary
bin.install "bin/terraform-inventory"
end
test do
system "#{bin}/terraform-inventory", "version"
end
end