homebrew-core/Formula/fleetctl.rb

23 lines
598 B
Ruby
Raw Normal View History

2014-07-20 18:48:51 +00:00
require "formula"
class Fleetctl < Formula
2014-07-20 18:48:51 +00:00
homepage "https://github.com/coreos/fleet"
url "https://github.com/coreos/fleet/archive/v0.6.1.tar.gz"
sha1 "2a839172b5801b98994d2fc69cfe691a612a3bce"
2014-07-20 18:48:51 +00:00
head "https://github.com/coreos/fleet.git"
2014-05-07 23:04:46 +00:00
bottle do
sha1 "80417f9cb656b30100f5fb06bb4d4067a6cd3d93" => :mavericks
sha1 "a8cb08ce6ed71d44bbede0eb50260e14851d6ae2" => :mountain_lion
sha1 "a62e570c01a879c361b36a7b6b91db6fc052e9b2" => :lion
2014-05-07 23:04:46 +00:00
end
2014-07-20 18:48:51 +00:00
depends_on "go" => :build
def install
2014-07-20 18:48:51 +00:00
ENV["GOPATH"] = buildpath
system "./build"
2014-07-20 18:48:51 +00:00
bin.install "bin/fleetctl"
end
end