require "language/go" class Dockward < Formula desc "Port forwarding tool for Docker containers" homepage "https://github.com/abiosoft/dockward" url "https://github.com/abiosoft/dockward/archive/0.0.4.tar.gz" sha256 "b96244386ae58aefb16177837d7d6adf3a9e6d93b75eea3308a45eb8eb9f4116" head "https://github.com/abiosoft/dockward.git" bottle do cellar :any_skip_relocation rebuild 1 sha256 "8abcf72ec26b59bab1b489e3233a137ebcc4a6d4bf3ccae10b7b062784d10e98" => :catalina sha256 "9c4eb789740a0b589faa9ccedcf3df90b6f68f1ab561806fe9aa750b91722800" => :mojave sha256 "50c2b838bbd89349e40050810a833cfea2803ac699cd006d47e796075be975b2" => :high_sierra sha256 "3dcac3afd57773d1c4b07b72f7f1bc9d66953dccccb0b3eadf7f40e43175d89b" => :sierra sha256 "b1b33f2b4db8242f9b422232d49bfde4c9b8fa0fa5053437366a9bc16795d9b5" => :el_capitan end depends_on "go" => :build go_resource "github.com/Sirupsen/logrus" do url "https://github.com/Sirupsen/logrus.git", :revision => "61e43dc76f7ee59a82bdf3d71033dc12bea4c77d" end go_resource "github.com/docker/distribution" do url "https://github.com/docker/distribution.git", :revision => "7a0972304e201e2a5336a69d00e112c27823f554" end go_resource "github.com/docker/engine-api" do url "https://github.com/docker/engine-api.git", :revision => "4290f40c056686fcaa5c9caf02eac1dde9315adf" end go_resource "github.com/docker/go-connections" do url "https://github.com/docker/go-connections.git", :revision => "eb315e36415380e7c2fdee175262560ff42359da" end go_resource "github.com/docker/go-units" do url "https://github.com/docker/go-units.git", :revision => "e30f1e79f3cd72542f2026ceec18d3bd67ab859c" end go_resource "golang.org/x/net" do url "https://go.googlesource.com/net.git", :revision => "f2499483f923065a842d38eb4c7f1927e6fc6e6d" end def install ENV["GOBIN"] = bin ENV["GOPATH"] = buildpath (buildpath/"src/github.com/abiosoft").mkpath ln_s buildpath, buildpath/"src/github.com/abiosoft/dockward" Language::Go.stage_deps resources, buildpath/"src" system "go", "install", "github.com/abiosoft/dockward" end test do output = shell_output(bin/"dockward -v") assert_match "dockward version #{version}", output end end