aboutsummaryrefslogtreecommitdiffstats
path: root/Formula/git.rb
diff options
context:
space:
mode:
authorMax Howell2009-05-21 00:04:43 +0100
committerMax Howell2009-05-21 00:04:43 +0100
commit84c5c3e5c301382ede5b1f04c7440ee9055589af (patch)
treefe8248a0b54da1dbb92693f9dca7db0c6bb56ed9 /Formula/git.rb
parent29d85578e75170a6c0eaebda4d701b46f1acf446 (diff)
downloadbrew-0.1.tar.bz2
The core tree, and some formulae0.1
Diffstat (limited to 'Formula/git.rb')
-rw-r--r--Formula/git.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Formula/git.rb b/Formula/git.rb
new file mode 100644
index 000000000..3d1bd1a19
--- /dev/null
+++ b/Formula/git.rb
@@ -0,0 +1,12 @@
+$:.unshift "#{File.dirname __FILE__}/../Cellar/homebrew" #rubysucks
+require 'brewkit'
+
+homepage='http://git-scm.com'
+url='http://kernel.org/pub/software/scm/git/git-1.6.3.1.tar.bz2'
+md5='c1f4aab741359c29f0fbf28563ac7387'
+
+Formula.new(url, md5).brew do |prefix|
+ `./configure --disable-debug --prefix="#{prefix}"`
+ `make`
+ `make install`
+end \ No newline at end of file