aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-06-27 11:07:14 -0700
committerAdam Vandenberg2012-06-27 11:07:14 -0700
commitb3a0a433c8e8eaf67c99b0eccacf7315b53cfcc8 (patch)
treecde9263112ce1633b34862030387067fdab5c732
parentd083ca38b4b5de0b47777183706bbc5e5beb293d (diff)
downloadhomebrew-b3a0a433c8e8eaf67c99b0eccacf7315b53cfcc8.tar.bz2
Remove git-subtree
subtree is now provided as a contrib of git itself.
-rw-r--r--Library/Formula/git-subtree.rb29
1 files changed, 0 insertions, 29 deletions
diff --git a/Library/Formula/git-subtree.rb b/Library/Formula/git-subtree.rb
deleted file mode 100644
index feb8a7bd4..000000000
--- a/Library/Formula/git-subtree.rb
+++ /dev/null
@@ -1,29 +0,0 @@
-require 'formula'
-
-class GitSubtree < Formula
- homepage 'https://github.com/apenwarr/git-subtree'
- url 'https://github.com/apenwarr/git-subtree/zipball/v0.4'
- md5 '904f325d2208ad5ca542e7bb56c50f9c'
-
- head 'https://github.com/apenwarr/git-subtree.git'
-
- def options
- [['--build-docs', "Build man pages using asciidoc and xmlto"]]
- end
-
- if ARGV.include? '--build-docs'
- # these are needed to build man pages
- depends_on 'asciidoc'
- depends_on 'xmlto'
- end
-
- def install
- if ARGV.include? '--build-docs'
- system "make doc"
- man1.install "git-subtree.1"
- else
- doc.install "git-subtree.txt"
- end
- bin.install "git-subtree.sh" => "git-subtree"
- end
-end