From 6d382cd579105710b9ba7dfd2287dced0df16d72 Mon Sep 17 00:00:00 2001 From: Peter van der Does Date: Thu, 3 Jan 2013 15:45:39 -0500 Subject: git-flow AVH 1.4.2 Closes #16876. Signed-off-by: Adam Vandenberg --- Library/Formula/git-flow-avh.rb | 27 +++++++++++++++++++++++++++ Library/Formula/git-flow.rb | 2 ++ 2 files changed, 29 insertions(+) create mode 100644 Library/Formula/git-flow-avh.rb (limited to 'Library') diff --git a/Library/Formula/git-flow-avh.rb b/Library/Formula/git-flow-avh.rb new file mode 100644 index 000000000..49e50c660 --- /dev/null +++ b/Library/Formula/git-flow-avh.rb @@ -0,0 +1,27 @@ +require 'formula' + +class GitFlowAvh < Formula + homepage 'https://github.com/petervanderdoes/gitflow' + url 'https://github.com/petervanderdoes/gitflow/archive/1.4.2.tar.gz' + sha1 '8ea7ac31e062ff01de6203d30de9fc049891589e' + + head 'https://github.com/petervanderdoes/gitflow.git', :branch => 'develop' + + depends_on 'gnu-getopt' + + conflicts_with 'git-flow' + + def install + system "make", "prefix=#{prefix}", "install" + end + + def caveats; <<-EOS.undent + Create a ~/.gitflow_export file with the content + alias getopt="$(brew --prefix gnu-getopt)/bin/getopt" + EOS + end + + def test + system "#{bin}/git-flow version" + end +end diff --git a/Library/Formula/git-flow.rb b/Library/Formula/git-flow.rb index 2be090a4a..31cd46bd0 100644 --- a/Library/Formula/git-flow.rb +++ b/Library/Formula/git-flow.rb @@ -17,6 +17,8 @@ class GitFlow < Formula head 'https://github.com/nvie/gitflow.git', :branch => 'develop' + conflicts_with 'git-flow-avh' + def install system "make", "prefix=#{prefix}", "install" -- cgit v1.2.3