2014-07-20 18:48:51 +00:00
|
|
|
require "formula"
|
2014-05-07 22:56:05 +00:00
|
|
|
|
|
|
|
class Fleetctl < Formula
|
2014-07-20 18:48:51 +00:00
|
|
|
homepage "https://github.com/coreos/fleet"
|
2014-10-03 08:19:57 +00:00
|
|
|
url "https://github.com/coreos/fleet/archive/v0.8.3.tar.gz"
|
|
|
|
sha1 "0b161574531ffea16453e577a6cd038bf9a85161"
|
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
|
2014-10-03 08:24:29 +00:00
|
|
|
sha1 "3afa540c1103571a68079e149796ed1928c9794c" => :mavericks
|
|
|
|
sha1 "037f051c01a81dc3d58b5fb10c14bcc6fe55ede5" => :mountain_lion
|
|
|
|
sha1 "3b49f61e5e500d78dc3568cadb3731a7e2e3588b" => :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
|
|
|
|
end
|