42 lines
1.3 KiB
Ruby
42 lines
1.3 KiB
Ruby
require "language/go"
|
|
|
|
class Gdm < Formula
|
|
desc "Go Dependency Manager (gdm)"
|
|
homepage "https://github.com/sparrc/gdm"
|
|
url "https://github.com/sparrc/gdm/archive/v1.0.tar.gz"
|
|
sha256 "e0dbec8deed27af3ff4cb16782bc38a4fd8eeb0db8e024b3083a00d36f877cab"
|
|
|
|
bottle do
|
|
cellar :any_skip_relocation
|
|
sha256 "70883b5c6e28deadb5c9dde5772b077f6ddd8a98a33fca55ee7e5400cc21f41a" => :el_capitan
|
|
sha256 "fbd0eaebd1c242041ad1116fcb208ea4f5e797b9691a4d46dbb4fb5d48a4d5b0" => :yosemite
|
|
sha256 "1ac0bd076d46710e030d3d65f92177a9ffb582ec1403d13ec958939ba6e8ddf4" => :mavericks
|
|
end
|
|
|
|
depends_on "go"
|
|
|
|
go_resource "golang.org/x/tools" do
|
|
url "https://go.googlesource.com/tools.git",
|
|
:revision => "b48dc8da98ae78c3d11f220e7d327304c84e623a"
|
|
end
|
|
|
|
def install
|
|
ENV["GOPATH"] = buildpath
|
|
mkdir_p buildpath/"src/github.com/sparrc"
|
|
ln_sf buildpath, buildpath/"src/github.com/sparrc/gdm"
|
|
|
|
Language::Go.stage_deps resources, buildpath/"src"
|
|
|
|
cd "src/github.com/sparrc/gdm" do
|
|
system "go", "build", "-o", bin/"gdm",
|
|
"-ldflags", "-X main.Version=#{version}"
|
|
end
|
|
end
|
|
|
|
test do
|
|
ENV["GOPATH"] = testpath
|
|
assert_match "#{version}", shell_output("#{bin}/gdm version")
|
|
assert_match "#{testpath}", shell_output("gdm save")
|
|
system "gdm", "restore"
|
|
end
|
|
end
|