2014-05-07 22:56:05 +00:00
|
|
|
class Fleetctl < Formula
|
2015-05-19 00:00:59 +00:00
|
|
|
desc "Distributed init system"
|
2014-07-20 18:48:51 +00:00
|
|
|
homepage "https://github.com/coreos/fleet"
|
2015-09-04 21:43:31 +00:00
|
|
|
url "https://github.com/coreos/fleet/archive/v0.11.5.tar.gz"
|
|
|
|
sha256 "a6a785099df71645b5fe8755a36baa6c11138749bc02ae4990fd3f52663c0394"
|
2014-07-20 18:48:51 +00:00
|
|
|
head "https://github.com/coreos/fleet.git"
|
2014-05-07 22:56:05 +00:00
|
|
|
|
2014-05-07 23:04:46 +00:00
|
|
|
bottle do
|
2015-09-22 16:27:12 +00:00
|
|
|
cellar :any_skip_relocation
|
|
|
|
sha256 "8e7e397b224aeed84bae981f349776f1cfaad1ac2d5b8cb6ae5c8b1f59d033aa" => :el_capitan
|
2015-09-05 03:00:37 +00:00
|
|
|
sha256 "66d1adc5c8b70ea5e28b0f7bd7a73f0baeb557198e90cc3a0bb87733524d5350" => :yosemite
|
|
|
|
sha256 "b444e18c6ad84389b3c7056ed190b22cf3427d77bc77323e30615d5794649e6e" => :mavericks
|
|
|
|
sha256 "0c48461c277d601a0abff0ff43110618316abd5bcbd498538a791ad91b5ce71d" => :mountain_lion
|
2014-05-07 23:04:46 +00:00
|
|
|
end
|
|
|
|
|
2014-07-20 18:48:51 +00:00
|
|
|
depends_on "go" => :build
|
2014-05-07 22:56:05 +00:00
|
|
|
|
|
|
|
def install
|
2014-07-20 18:48:51 +00:00
|
|
|
ENV["GOPATH"] = buildpath
|
2014-05-07 22:56:05 +00:00
|
|
|
system "./build"
|
2014-07-20 18:48:51 +00:00
|
|
|
bin.install "bin/fleetctl"
|
2014-05-07 22:56:05 +00:00
|
|
|
end
|
2015-08-20 13:13:33 +00:00
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/fleetctl", "-version"
|
|
|
|
end
|
2014-05-07 22:56:05 +00:00
|
|
|
end
|