2014-05-07 22:56:05 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Fleetctl < Formula
|
|
|
|
homepage 'https://github.com/coreos/fleet'
|
2014-05-14 17:27:24 +00:00
|
|
|
url 'https://github.com/coreos/fleet/archive/v0.3.2.tar.gz'
|
|
|
|
sha1 '9931645ccacec27297b8ee6d8f4ea5cd882295eb'
|
2014-05-07 22:56:05 +00:00
|
|
|
head 'https://github.com/coreos/fleet.git'
|
|
|
|
|
2014-05-07 23:04:46 +00:00
|
|
|
bottle do
|
|
|
|
sha1 "486d83a0cee1d7b5c62b554f5197bd3273a7ce49" => :mavericks
|
|
|
|
sha1 "c62b2821349c898cf03d786b3e75bbb52a291935" => :mountain_lion
|
|
|
|
sha1 "414335309df919f7adf9abe92855d74d63dbb7e5" => :lion
|
|
|
|
end
|
|
|
|
|
2014-05-07 22:56:05 +00:00
|
|
|
depends_on 'go' => :build
|
|
|
|
|
|
|
|
def install
|
|
|
|
ENV['GOPATH'] = buildpath
|
|
|
|
system "./build"
|
|
|
|
bin.install 'bin/fleetctl'
|
|
|
|
end
|
|
|
|
end
|