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"
|
2015-03-02 19:54:09 +00:00
|
|
|
url "https://github.com/coreos/fleet/archive/v0.9.1.tar.gz"
|
|
|
|
sha1 "1e3754c9be085634f1d637f3ba737147c6f4bab2"
|
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-02-20 15:36:48 +00:00
|
|
|
cellar :any
|
2015-03-02 20:05:46 +00:00
|
|
|
sha1 "9b43a3147a4159afc896b5b9046558f7f054e9cb" => :yosemite
|
|
|
|
sha1 "7afabaeb2cc5624af27e47f32eb0f974bee73de1" => :mavericks
|
|
|
|
sha1 "4d1f559599d47aed0b1be261c6bdd7e6e3ad04e8" => :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
|
|
|
|
end
|