homebrew-core/Formula/fleetctl.rb

23 lines
598 B
Ruby
Raw Normal View History

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'
head 'https://github.com/coreos/fleet.git'
2014-05-07 23:04:46 +00:00
bottle do
sha1 "96b02915f2b3f5ea32ccdb72776c6cac3232678f" => :mavericks
sha1 "4156313fb8d0b37718c916a06002bf66f89302f0" => :mountain_lion
sha1 "7aa84216b036219dfe2107812161d73cd0036596" => :lion
2014-05-07 23:04:46 +00:00
end
depends_on 'go' => :build
def install
ENV['GOPATH'] = buildpath
system "./build"
bin.install 'bin/fleetctl'
end
end