38 lines
1.2 KiB
Ruby
38 lines
1.2 KiB
Ruby
require "language/go"
|
|
|
|
class Dockviz < Formula
|
|
desc "Visualizing docker data"
|
|
homepage "https://github.com/justone/dockviz"
|
|
url "https://github.com/justone/dockviz.git", :tag => "v0.3",
|
|
:revision => "ae855d6a5a540c3563948e7035f9d19cab17f5b0"
|
|
head "https://github.com/justone/dockviz.git"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "9b5c1b510e7a271d36028e8fc75cafc00ccab385e357c7415f8727f4acc290c3" => :el_capitan
|
|
sha256 "97ea72b5495a1481a3ad9b0310b9e45263dfe238b11f25823634568b16236785" => :yosemite
|
|
sha256 "aa256e62b5044a4f2d7a3b3a37f352b20e3edad10c6bdcb3755ec4761a585740" => :mavericks
|
|
end
|
|
|
|
depends_on "go" => :build
|
|
|
|
go_resource "github.com/fsouza/go-dockerclient" do
|
|
url "https://github.com/fsouza/go-dockerclient.git",
|
|
:revision => "0f5764b4d2f5b8928a05db1226a508817a9a01dd"
|
|
end
|
|
|
|
go_resource "github.com/jessevdk/go-flags" do
|
|
url "https://github.com/jessevdk/go-flags.git",
|
|
:revision => "0a28dbe50f23d8fce6b016975b964cfe7b97a20a"
|
|
end
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
system "go", "build", "-o", bin/"dockviz"
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/dockviz", "--version"
|
|
end
|
|
end
|