2015-06-03 05:50:10 +00:00
|
|
|
require "language/go"
|
|
|
|
|
|
|
|
class Ghq < Formula
|
|
|
|
desc "Remote repository management made easy"
|
|
|
|
homepage "https://github.com/motemen/ghq"
|
2015-12-16 03:14:43 +00:00
|
|
|
url "https://github.com/motemen/ghq/archive/v0.7.2.tar.gz"
|
|
|
|
sha256 "8b0ae2302c341d7fbaf3f59b8b083da9f8c1a620da110ab615fe805e048e9420"
|
2015-06-03 05:50:10 +00:00
|
|
|
|
|
|
|
head "https://github.com/motemen/ghq.git"
|
|
|
|
|
2015-06-18 09:29:05 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2015-08-10 10:41:23 +00:00
|
|
|
sha256 "df6df9c2100ad46586d62233dfdb99401bb5beab42a0d87635419bf439797212" => :yosemite
|
|
|
|
sha256 "80a4db2f17fb2c3614604231921fd867f0a85e2034942c96e1f9d33dd6b1b136" => :mavericks
|
|
|
|
sha256 "7d6e66fef647214c51a79a0759be423e990894c3dc03be45fc654b8e74270148" => :mountain_lion
|
2015-06-18 09:29:05 +00:00
|
|
|
end
|
|
|
|
|
2015-06-03 05:50:10 +00:00
|
|
|
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
|
2015-08-10 10:01:59 +00:00
|
|
|
url "https://github.com/daviddengcn/go-colortext.git", :revision => "3b18c8575a432453d41fdafb340099fff5bba2f7"
|
2015-06-03 05:50:10 +00:00
|
|
|
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"
|
|
|
|
|
2015-08-04 05:12:33 +00:00
|
|
|
system "go", "build", "-ldflags", "-X main.Version #{version}", "-o", "ghq"
|
2015-06-03 05:50:10 +00:00
|
|
|
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
|