homebrew-core/Formula/ghq.rb
2015-12-16 09:56:07 +01:00

56 lines
1.9 KiB
Ruby

require "language/go"
class Ghq < Formula
desc "Remote repository management made easy"
homepage "https://github.com/motemen/ghq"
url "https://github.com/motemen/ghq/archive/v0.7.2.tar.gz"
sha256 "8b0ae2302c341d7fbaf3f59b8b083da9f8c1a620da110ab615fe805e048e9420"
head "https://github.com/motemen/ghq.git"
bottle do
cellar :any_skip_relocation
sha256 "6abb47a3dd1d757eb1d94d41cc9b4c652e4ebce66988f8e19b7258686dd5c51f" => :el_capitan
sha256 "242455918cf81b89c0df7cea4dcdbbe96ab5455b8d5bc4b9c71cc0f5fd57c02a" => :yosemite
sha256 "a2398582bb3fa06cc8ea70c3bc835d8d06dc1b814ef7119cdaa66234fd661229" => :mavericks
end
option "without-completions", "Disable zsh completions"
depends_on "go" => :build
go_resource "github.com/codegangsta/cli" do
url "https://github.com/codegangsta/cli.git", :revision => "565493f259bf868adb54d45d5f4c68d405117adf"
end
go_resource "github.com/mitchellh/go-homedir" do
url "https://github.com/mitchellh/go-homedir.git", :revision => "1f6da4a72e57d4e7edd4a7295a585e0a3999a2d4"
end
go_resource "github.com/motemen/go-colorine" do
url "https://github.com/motemen/go-colorine.git", :revision => "49ff36b8fa42db28092361cd20dcefd0b03b1472"
end
go_resource "github.com/daviddengcn/go-colortext" do
url "https://github.com/daviddengcn/go-colortext.git", :revision => "3b18c8575a432453d41fdafb340099fff5bba2f7"
end
def install
mkdir_p "#{buildpath}/src/github.com/motemen/"
ln_s buildpath, "#{buildpath}/src/github.com/motemen/ghq"
ENV["GOPATH"] = buildpath
ENV.append_path "PATH", "#{ENV["GOPATH"]}/bin"
Language::Go.stage_deps resources, buildpath/"src"
system "go", "build", "-ldflags", "-X main.Version #{version}", "-o", "ghq"
bin.install "ghq"
if build.with? "completions"
zsh_completion.install "zsh/_ghq"
end
end
test do
assert_match "#{testpath}/.ghq", shell_output("#{bin}/ghq root")
end
end