2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 04:08:00 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Ruby < Formula
|
2011-02-18 15:34:04 +00:00
|
|
|
url 'http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.2-p180.tar.bz2'
|
2010-05-28 21:19:27 +00:00
|
|
|
homepage 'http://www.ruby-lang.org/en/'
|
2010-08-18 21:55:47 +00:00
|
|
|
head 'http://svn.ruby-lang.org/repos/ruby/trunk/', :using => :svn
|
2011-02-18 15:34:04 +00:00
|
|
|
md5 '68510eeb7511c403b91fe5476f250538'
|
2009-10-15 18:59:18 +00:00
|
|
|
|
|
|
|
depends_on 'readline'
|
2010-08-20 02:44:18 +00:00
|
|
|
depends_on 'libyaml'
|
2010-07-09 19:40:41 +00:00
|
|
|
|
2011-03-21 21:24:22 +00:00
|
|
|
fails_with_llvm
|
|
|
|
|
|
|
|
# Stripping breaks dynamic linking
|
|
|
|
skip_clean :all
|
|
|
|
|
2010-01-19 11:41:37 +00:00
|
|
|
def options
|
|
|
|
[
|
|
|
|
["--with-suffix", "Add a 19 suffix to commands"],
|
2010-05-16 23:29:32 +00:00
|
|
|
["--with-doc", "Install with the Ruby documentation"],
|
2011-02-06 19:42:58 +00:00
|
|
|
["--universal", "Compile a universal binary (arch=x86_64,i386)"],
|
2010-01-19 11:41:37 +00:00
|
|
|
]
|
|
|
|
end
|
2010-07-09 19:40:41 +00:00
|
|
|
|
2009-09-07 04:08:00 +00:00
|
|
|
def install
|
2010-08-20 03:00:37 +00:00
|
|
|
ruby_lib = HOMEBREW_PREFIX+"lib/ruby"
|
|
|
|
|
|
|
|
if File.exist? ruby_lib and File.symlink? ruby_lib
|
|
|
|
opoo "#{ruby_lib} exists as a symlink"
|
|
|
|
puts <<-EOS.undent
|
|
|
|
The previous Ruby formula symlinked #{ruby_lib} into Ruby's Cellar.
|
|
|
|
|
|
|
|
This version creates this as a "real folder" in HOMEBREW_PREFIX
|
|
|
|
so that installed gems will survive between Ruby updates.
|
|
|
|
|
|
|
|
Please remove this existing symlink before continuing:
|
|
|
|
rm #{ruby_lib}
|
|
|
|
EOS
|
|
|
|
exit 1
|
|
|
|
end
|
|
|
|
|
|
|
|
system "autoconf" unless File.exists? 'configure'
|
|
|
|
|
|
|
|
# Configure claims that "--with-readline-dir" is unused, but it works.
|
|
|
|
args = ["--prefix=#{prefix}",
|
2010-08-20 02:44:18 +00:00
|
|
|
"--with-readline-dir=#{Formula.factory('readline').prefix}",
|
2010-01-19 11:41:37 +00:00
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
2010-08-21 01:29:38 +00:00
|
|
|
"--enable-shared"]
|
2010-01-19 11:41:37 +00:00
|
|
|
|
|
|
|
args << "--program-suffix=19" if ARGV.include? "--with-suffix"
|
2011-02-06 19:42:58 +00:00
|
|
|
args << "--with-arch=x86_64,i386" if ARGV.include? "--universal"
|
2010-01-19 11:41:37 +00:00
|
|
|
|
2010-08-20 03:00:37 +00:00
|
|
|
# Put gem, site and vendor folders in the HOMEBREW_PREFIX
|
2010-08-21 01:29:38 +00:00
|
|
|
|
|
|
|
(ruby_lib+'site_ruby').mkpath
|
|
|
|
(ruby_lib+'vendor_ruby').mkpath
|
2010-08-20 03:00:37 +00:00
|
|
|
(ruby_lib+'gems').mkpath
|
2010-05-28 21:19:27 +00:00
|
|
|
|
2010-08-21 01:29:38 +00:00
|
|
|
(lib+'ruby').mkpath
|
|
|
|
ln_s (ruby_lib+'site_ruby'), (lib+'ruby')
|
|
|
|
ln_s (ruby_lib+'vendor_ruby'), (lib+'ruby')
|
|
|
|
ln_s (ruby_lib+'gems'), (lib+'ruby')
|
|
|
|
|
2010-01-19 11:41:37 +00:00
|
|
|
system "./configure", *args
|
2009-09-07 04:08:00 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
2010-05-16 23:29:32 +00:00
|
|
|
system "make install-doc" if ARGV.include? "--with-doc"
|
2010-08-20 03:00:37 +00:00
|
|
|
|
2009-09-07 04:08:00 +00:00
|
|
|
end
|
2010-07-09 19:40:41 +00:00
|
|
|
|
2010-07-18 19:31:09 +00:00
|
|
|
def caveats; <<-EOS.undent
|
2010-10-26 04:05:28 +00:00
|
|
|
Consider using RVM or Cinderella to manage Ruby environments:
|
|
|
|
* RVM: http://rvm.beginrescueend.com/
|
|
|
|
* Cinderella: http://www.atmos.org/cinderella/
|
2010-07-18 19:31:09 +00:00
|
|
|
|
2010-08-20 03:00:37 +00:00
|
|
|
NOTE: By default, gem installed binaries will be placed into:
|
|
|
|
#{bin}
|
|
|
|
|
|
|
|
You may want to add this to your PATH.
|
2009-12-02 12:41:23 +00:00
|
|
|
EOS
|
|
|
|
end
|
2009-09-07 04:08:00 +00:00
|
|
|
end
|