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-08-29 15:59:44 +00:00
|
|
|
url "https://github.com/coreos/fleet/archive/v0.7.1.tar.gz"
|
|
|
|
sha1 "78b072d91845c75613a48c8424c27f1422cceb51"
|
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-08-29 16:06:20 +00:00
|
|
|
sha1 "7fe9d8004545528239bdaa189886ce8dde620368" => :mavericks
|
|
|
|
sha1 "17e53f7304ca738b12a1a76112c1063793a8fb99" => :mountain_lion
|
|
|
|
sha1 "a2c9e731cfb9b4ac3e4b9fa03e0533821a60695f" => :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
|