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-09-11 14:38:38 +00:00
|
|
|
url "https://github.com/coreos/fleet/archive/v0.8.0.tar.gz"
|
|
|
|
sha1 "2b45b665513b3ce6812b4f50c48f38891d9c0529"
|
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-09-11 14:45:37 +00:00
|
|
|
sha1 "5837aae02570e3d6d7a609cd87196e28ad86c297" => :mavericks
|
|
|
|
sha1 "e129959dd0e59efeb10063eb887de3daa04c3769" => :mountain_lion
|
|
|
|
sha1 "c8579d9c95c87f5c14d33a507c1a04c168d7003b" => :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
|