homebrew-core/Formula/godep.rb
2018-10-02 10:16:24 +02:00

45 lines
1.4 KiB
Ruby

class Godep < Formula
desc "Dependency tool for go"
homepage "https://godoc.org/github.com/tools/godep"
url "https://github.com/tools/godep/archive/v80.tar.gz"
sha256 "029adc1a0ce5c63cd40b56660664e73456648e5c031ba6c214ba1e1e9fc86cf6"
revision 7
head "https://github.com/tools/godep.git"
bottle do
cellar :any_skip_relocation
sha256 "c3a03f0c0de0a14d79f32334c7fb3ffee121bb7f145062ecd6e0683fb1c67c61" => :mojave
sha256 "1732fbdbeaa819fb82ab0a788d5d90e6e255550950c86c6a426f5dd57165469f" => :high_sierra
sha256 "c567fad12d39b99155f9e33d60798be327ebdbfbb278f7950c1164c146e2733e" => :sierra
end
depends_on "go"
def install
ENV["GOPATH"] = buildpath
(buildpath/"src/github.com/tools/godep").install buildpath.children
cd "src/github.com/tools/godep" do
system "go", "build", "-o", bin/"godep"
prefix.install_metafiles
end
end
test do
ENV["GOPATH"] = testpath.realpath
(testpath/"Godeps/Godeps.json").write <<~EOS
{
"ImportPath": "github.com/tools/godep",
"GoVersion": "go1.8",
"Deps": [
{
"ImportPath": "golang.org/x/tools/cover",
"Rev": "3fe2afc9e626f32e91aff6eddb78b14743446865"
}
]
}
EOS
system bin/"godep", "restore"
assert_predicate testpath/"src/golang.org/x/tools/README", :exist?,
"Failed to find 'src/golang.org/x/tools/README!' file"
end
end