homebrew-core/Formula/git-flow-avh.rb

42 lines
1.2 KiB
Ruby
Raw Normal View History

class GitFlowAvh < Formula
desc "AVH edition of git-flow"
homepage "https://github.com/petervanderdoes/gitflow"
url "https://github.com/petervanderdoes/gitflow/archive/1.8.0.tar.gz"
sha256 "8239131b8dac160d7e929eab376fa14de44a55cbd5c5545e0ad4464d3a57adef"
2013-09-18 02:37:24 +00:00
head do
url "https://github.com/petervanderdoes/gitflow.git", :branch => "develop"
2013-09-18 02:37:24 +00:00
resource "completion" do
url "https://github.com/petervanderdoes/git-flow-completion.git", :branch => "develop"
2013-09-18 02:37:24 +00:00
end
end
resource "completion" do
url "https://github.com/petervanderdoes/git-flow-completion/archive/0.5.1.tar.gz"
sha256 "5c8547a549dc623a8d57cfc22c3fa88588f5630da9dc6de9638e5b69da9d47d0"
2013-09-18 02:37:24 +00:00
end
depends_on "gnu-getopt"
conflicts_with "git-flow"
def install
system "make", "prefix=#{libexec}", "install"
(bin/"git-flow").write <<-EOS.undent
#!/bin/bash
export FLAGS_GETOPT_CMD=#{Formula["gnu-getopt"].opt_bin}/getopt
exec "#{libexec}/bin/git-flow" "$@"
EOS
resource("completion").stage do
2013-05-03 18:03:31 +00:00
bash_completion.install "git-flow-completion.bash"
zsh_completion.install "git-flow-completion.zsh"
end
end
2013-03-25 18:35:18 +00:00
test do
system "#{bin}/git-flow", "version"
end
end