aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJoshua Peek2010-08-19 21:44:18 -0500
committerAdam Vandenberg2010-08-20 11:50:02 -0700
commit855648e006e3ae169ec3d43078d6e3efbbb0daf0 (patch)
treefb494acd12f22e698258a5aad8669435f5f9f943 /Library
parent22aad1a1f07c6936351657cdd76f4013616b1381 (diff)
downloadhomebrew-855648e006e3ae169ec3d43078d6e3efbbb0daf0.tar.bz2
Update Formula: ruby
Update ruby formula to 1.9.2 Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ruby.rb6
1 files changed, 4 insertions, 2 deletions
diff --git a/Library/Formula/ruby.rb b/Library/Formula/ruby.rb
index 8654582cb..c28bdad94 100644
--- a/Library/Formula/ruby.rb
+++ b/Library/Formula/ruby.rb
@@ -3,12 +3,13 @@ require 'formula'
# TODO de-version the include and lib directories
class Ruby <Formula
- url 'http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p378.tar.gz'
+ url 'http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.2-p0.tar.gz'
homepage 'http://www.ruby-lang.org/en/'
head 'http://svn.ruby-lang.org/repos/ruby/branches/ruby_1_9_2/', :using => :svn
- md5 '9fc5941bda150ac0a33b299e1e53654c'
+ md5 '755aba44607c580fddc25e7c89260460'
depends_on 'readline'
+ depends_on 'libyaml'
def options
[
@@ -24,6 +25,7 @@ class Ruby <Formula
fails_with_llvm
args = [ "--prefix=#{prefix}",
+ "--with-readline-dir=#{Formula.factory('readline').prefix}",
"--disable-debug",
"--disable-dependency-tracking",
"--enable-shared" ]