72 lines
2 KiB
Ruby
72 lines
2 KiB
Ruby
require "language/go"
|
|
|
|
class Nomad < Formula
|
|
desc "Distributed, Highly Available, Datacenter-Aware Scheduler"
|
|
homepage "https://www.nomadproject.io"
|
|
url "https://github.com/hashicorp/nomad.git",
|
|
:tag => "v0.3.1",
|
|
:revision => "17fa55c4cfdacbcaf9459a7210d58aa4b47ed541"
|
|
|
|
head "https://github.com/hashicorp/nomad.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "3c13f727ea94205939c69a1a98a95f56547f0472de45f19757af796a83388ed5" => :el_capitan
|
|
sha256 "49e6875dc35f9ac3c8bf4e88236920d285b9be6c73d724e0d8935185472ce1c6" => :yosemite
|
|
sha256 "eecc51d26cd0867c669d723d09fb90cd2f879c052ac4f3184f5441ccfd0a9576" => :mavericks
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
go_resource "github.com/ugorji/go" do
|
|
url "https://github.com/ugorji/go.git",
|
|
:revision => "c062049c1793b01a3cc3fe786108edabbaf7756b"
|
|
end
|
|
|
|
go_resource "github.com/mitchellh/gox" do
|
|
url "https://github.com/mitchellh/gox.git",
|
|
:revision => "39862d88e853ecc97f45e91c1cdcb1b312c51ea"
|
|
end
|
|
|
|
go_resource "github.com/mitchellh/iochan" do
|
|
url "https://github.com/mitchellh/iochan.git",
|
|
:revision => "87b45ffd0e9581375c491fef3d32130bb15c5bd7"
|
|
end
|
|
|
|
def install
|
|
contents = Dir["{*,.git,.gitignore}"]
|
|
gopath = buildpath/"gopath"
|
|
(gopath/"src/github.com/hashicorp/nomad").install contents
|
|
|
|
ENV["GOPATH"] = gopath
|
|
ENV.prepend_create_path "PATH", gopath/"bin"
|
|
|
|
Language::Go.stage_deps resources, gopath/"src"
|
|
|
|
cd gopath/"src/github.com/ugorji/go/codec/codecgen" do
|
|
system "go", "install"
|
|
end
|
|
|
|
cd gopath/"src/github.com/mitchellh/gox" do
|
|
system "go", "install"
|
|
end
|
|
|
|
cd gopath/"src/github.com/hashicorp/nomad" do
|
|
system "make", "dev"
|
|
bin.install "bin/nomad"
|
|
end
|
|
end
|
|
|
|
test do
|
|
begin
|
|
pid = fork do
|
|
exec "#{bin}/nomad", "agent", "-dev"
|
|
end
|
|
sleep 10
|
|
ENV.append "NOMAD_ADDR", "http://127.0.0.1:4646"
|
|
system "#{bin}/nomad", "node-status"
|
|
ensure
|
|
Process.kill("TERM", pid)
|
|
end
|
|
end
|
|
end
|