10a4c4da39
Closes Homebrew/homebrew#31716. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
22 lines
598 B
Ruby
22 lines
598 B
Ruby
require "formula"
|
|
|
|
class Fleetctl < Formula
|
|
homepage "https://github.com/coreos/fleet"
|
|
url "https://github.com/coreos/fleet/archive/v0.7.0.tar.gz"
|
|
sha1 "9bec7868c9eeec59b3d8f28d01c8a631597b6b09"
|
|
head "https://github.com/coreos/fleet.git"
|
|
|
|
bottle do
|
|
sha1 "9e9a20045cba0c6800fb6107ab597ba94cc5fe15" => :mavericks
|
|
sha1 "5a9594f397d40aa219dcc442964dc58555704b1f" => :mountain_lion
|
|
sha1 "d7fe5f6634f1f6e87395b6034abbfc7e11e287fc" => :lion
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
system "./build"
|
|
bin.install "bin/fleetctl"
|
|
end
|
|
end
|