aboutsummaryrefslogtreecommitdiffstats
path: root/Formula/git.rb
diff options
context:
space:
mode:
authorMax Howell2009-06-04 19:21:19 +0100
committerMax Howell2009-06-04 19:36:58 +0100
commitcc50131728fc20016e9cdb8383c8faf723448f51 (patch)
tree0e7eaa43b3dabfdd3473ccbbe235e46bad550a21 /Formula/git.rb
parent84ad47bc3c8029847e5c41ab4646a6b9455b370a (diff)
downloadbrew-cc50131728fc20016e9cdb8383c8faf723448f51.tar.bz2
Created /Library moved brew tool to /bin
Moved Forumla and Cellar/homebrew into Library. This way the homebrew core files are more sensibly placed, Cellar is more internally consistent and only generated. And Homebrew is ready for use straight out of the tarball.
Diffstat (limited to 'Formula/git.rb')
-rw-r--r--Formula/git.rb20
1 files changed, 0 insertions, 20 deletions
diff --git a/Formula/git.rb b/Formula/git.rb
deleted file mode 100644
index 0f0620f40..000000000
--- a/Formula/git.rb
+++ /dev/null
@@ -1,20 +0,0 @@
-require 'brewkit'
-
-class GitManuals <Formula
- @url='http://kernel.org/pub/software/scm/git/git-manpages-1.6.3.1.tar.bz2'
- @md5='971d573e8f261feb83290a59728c2b33'
-end
-
-class Git <Formula
- @url='http://kernel.org/pub/software/scm/git/git-1.6.3.1.tar.bz2'
- @md5='c1f4aab741359c29f0fbf28563ac7387'
- @homepage='http://git-scm.com'
-
- def install
- system "./configure --prefix='#{prefix}' --disable-debug"
- system "make install"
-
- # the manuals come separately, well sort of, it's easier this way though
- GitManuals.new.brew { FileUtils.mv Dir['*'], man }
- end
-end \ No newline at end of file