diff options
| author | Tianyi Cui | 2010-11-17 06:26:18 +0800 | 
|---|---|---|
| committer | Adam Vandenberg | 2010-11-18 20:05:49 -0800 | 
| commit | 4c0315ae5b2955b92a1973e506888ae0f5dc84de (patch) | |
| tree | 39c6927748b55a788531900581609b5317d9ad61 /Library | |
| parent | 1edbbc3666a552118702824a34491ee160c918e0 (diff) | |
| download | homebrew-4c0315ae5b2955b92a1973e506888ae0f5dc84de.tar.bz2 | |
rubinius: update to 1.1.1
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Formula/rubinius.rb | 17 | 
1 files changed, 5 insertions, 12 deletions
diff --git a/Library/Formula/rubinius.rb b/Library/Formula/rubinius.rb index ea6b6514d..8302b1203 100644 --- a/Library/Formula/rubinius.rb +++ b/Library/Formula/rubinius.rb @@ -1,10 +1,10 @@  require 'formula'  class Rubinius < Formula -  url 'http://asset.rubini.us/rubinius-1.1.0-20100923.tar.gz' -  version '1.1.0' +  url 'http://asset.rubini.us/rubinius-1.1.1-20101116.tar.gz' +  version '1.1.1'    homepage 'http://rubini.us/' -  md5 'e2ae16238b201de09975abe19da09ea9' +  md5 'b39f618eeba37c3aff215da8bca55fd7'    head 'git://github.com/evanphx/rubinius.git'    # Do not strip binaries, or else it fails to run. @@ -14,15 +14,8 @@ class Rubinius < Formula      # Let Rubinius define its own flags; messing with these causes build breaks.      %w{CC CXX LD CFLAGS CXXFLAGS CPPFLAGS LDFLAGS}.each { |e| ENV.delete(e) } -    ENV['RELEASE'] = version # to fix issues with "path already exists" - -    # The configure script uses "#!/usr/bin/env ruby" but complains if you -    # aren't using 1.8, so replace it with the path to the OS X system ruby. -    # (If the user has replaces their system ruby, well, don't do that.) -    inreplace 'configure', "#!/usr/bin/env ruby", "#!/usr/bin/ruby" - -    # "--skip-system" means to use the included LLVM -    system "./configure", "--skip-system", +    system "/usr/bin/ruby", "./configure", +                          "--skip-system", # download and use the prebuilt LLVM                            "--prefix", prefix,                            "--includedir", "#{include}/rubinius",                            "--libdir", lib,  | 
