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.7.1.tar.gz"
sha1 "78b072d91845c75613a48c8424c27f1422cceb51"
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
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
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