Created
September 14, 2017 09:59
-
-
Save jbfarez/8ad665647137afe9ed346d6153d5caa0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
require "language/go" | |
class Packer < Formula | |
desc "Tool for creating identical machine images for multiple platforms" | |
homepage "https://packer.io" | |
url "https://github.com/hashicorp/packer.git", | |
:tag => "v1.0.2", | |
:revision => "84b9b07901fabfeab1325eb2d8d207aeefa944c7" | |
head "https://github.com/hashicorp/packer.git" | |
bottle do | |
cellar :any_skip_relocation | |
sha256 "7396853fddb717cbd128220fabd1baee4c624f650593835a71b0720d32643ab5" => :sierra | |
sha256 "cd88d9ba693523f460431db56d6c91ee24a5a5c789436459edcea749529b52d3" => :el_capitan | |
end | |
depends_on "go" => :build | |
depends_on "govendor" => :build | |
go_resource "github.com/mitchellh/gox" do | |
url "https://github.com/mitchellh/gox.git", | |
:revision => "c9740af9c6574448fd48eb30a71f964014c7a837" | |
end | |
go_resource "github.com/mitchellh/iochan" do | |
url "https://github.com/mitchellh/iochan.git", | |
:revision => "87b45ffd0e9581375c491fef3d32130bb15c5bd7" | |
end | |
def install | |
ENV["XC_OS"] = "darwin" | |
ENV["XC_ARCH"] = MacOS.prefer_64_bit? ? "amd64" : "386" | |
ENV["GOPATH"] = buildpath | |
# For the gox buildtool used by packer, which | |
# doesn't need to be installed permanently. | |
ENV.append_path "PATH", buildpath | |
packerpath = buildpath/"src/github.com/hashicorp/packer" | |
packerpath.install Dir["{*,.git}"] | |
Language::Go.stage_deps resources, buildpath/"src" | |
cd "src/github.com/mitchellh/gox" do | |
system "go", "build" | |
buildpath.install "gox" | |
end | |
cd packerpath do | |
# We handle this step above. Don't repeat it. | |
inreplace "Makefile" do |s| | |
s.gsub! "go get github.com/mitchellh/gox", "" | |
s.gsub! "go get golang.org/x/tools/cmd/stringer", "" | |
s.gsub! "go get github.com/kardianos/govendor", "" | |
end | |
(buildpath/"bin").mkpath | |
if build.head? | |
system "make", "bin" | |
else | |
system "make", "releasebin" | |
end | |
bin.install buildpath/"bin/packer" | |
zsh_completion.install "contrib/zsh-completion/_packer" | |
prefix.install_metafiles | |
end | |
end | |
test do | |
minimal = testpath/"minimal.json" | |
minimal.write <<-EOS.undent | |
{ | |
"builders": [{ | |
"type": "amazon-ebs", | |
"region": "us-east-1", | |
"source_ami": "ami-59a4a230", | |
"instance_type": "m3.medium", | |
"ssh_username": "ubuntu", | |
"ami_name": "homebrew packer test {{timestamp}}" | |
}], | |
"provisioners": [{ | |
"type": "shell", | |
"inline": [ | |
"sleep 30", | |
"sudo apt-get update" | |
] | |
}] | |
} | |
EOS | |
system "#{bin}/packer", "validate", minimal | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment