aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/git-flow-clone.rb
diff options
context:
space:
mode:
authorJack Nagel2015-03-03 21:30:08 -0500
committerJack Nagel2015-03-03 21:30:51 -0500
commit7656218af1593feca6c98aa563744cd871b2a8f4 (patch)
tree288d1b21737fad68b45c35d9a6425a1d704daa6e /Library/Formula/git-flow-clone.rb
parente89992e8ae71f9b7331993e73c8e974179ea43c7 (diff)
downloadhomebrew-7656218af1593feca6c98aa563744cd871b2a8f4.tar.bz2
Move git-flow-clone to the boneyard
Closes #32701.
Diffstat (limited to 'Library/Formula/git-flow-clone.rb')
-rw-r--r--Library/Formula/git-flow-clone.rb22
1 files changed, 0 insertions, 22 deletions
diff --git a/Library/Formula/git-flow-clone.rb b/Library/Formula/git-flow-clone.rb
deleted file mode 100644
index 6bd86a277..000000000
--- a/Library/Formula/git-flow-clone.rb
+++ /dev/null
@@ -1,22 +0,0 @@
-require 'formula'
-
-class GitFlowClone < Formula
- homepage 'https://github.com/ashirazi/git-flow-clone'
- url 'https://github.com/ashirazi/git-flow-clone/archive/0.1.2.tar.gz'
- sha1 'd4d5c106ebd7de8abbee69f0b277ecdfe85e5b6d'
-
- def install
- system "make", "prefix=#{prefix}", "install"
- end
-
- def caveats; <<-EOS.undent
- Either git-flow or git-flow-avh (recommended) need to be installed:
- brew install git-flow
- or:
- brew install git-flow-avh
-
- If installed with git-flow-avh update ~/.gitflow_export with:
- export GITFLOW_DIR=#{HOMEBREW_PREFIX}/bin
- EOS
- end
-end