2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-07 04:08:00 +00:00
|
|
|
|
2009-12-02 12:37:21 +00:00
|
|
|
# TODO de-version the include and lib directories
|
|
|
|
|
2009-09-07 04:08:00 +00:00
|
|
|
class Ruby <Formula
|
2009-12-11 17:56:53 +00:00
|
|
|
@url='http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.1-p376.tar.gz'
|
2009-12-02 12:37:21 +00:00
|
|
|
@homepage='http://www.ruby-lang.org/en/'
|
2009-12-11 17:56:53 +00:00
|
|
|
@md5='ebb20550a11e7f1a2fbd6fdec2a3e0a3'
|
2009-10-15 18:59:18 +00:00
|
|
|
|
|
|
|
depends_on 'readline'
|
2009-09-13 16:59:04 +00:00
|
|
|
|
2010-01-19 11:41:37 +00:00
|
|
|
def options
|
|
|
|
[
|
|
|
|
["--with-suffix", "Add a 19 suffix to commands"],
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|
2009-09-07 04:08:00 +00:00
|
|
|
def install
|
2009-11-09 23:44:39 +00:00
|
|
|
ENV.gcc_4_2
|
2010-01-19 11:41:37 +00:00
|
|
|
|
|
|
|
args = [ "--prefix=#{prefix}",
|
|
|
|
"--disable-debug",
|
|
|
|
"--disable-dependency-tracking",
|
|
|
|
"--enable-shared" ]
|
|
|
|
|
|
|
|
args << "--program-suffix=19" if ARGV.include? "--with-suffix"
|
|
|
|
|
|
|
|
system "./configure", *args
|
2009-09-07 04:08:00 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
2009-12-02 12:41:23 +00:00
|
|
|
def caveats; <<-EOS
|
|
|
|
If you install gems with the RubyGems installed with this formula they will
|
|
|
|
to this formula's prefix. This needs to be fixed, as for example, upgrading
|
|
|
|
Ruby will lose all your gems.
|
|
|
|
EOS
|
|
|
|
end
|
|
|
|
|
2009-12-02 12:37:21 +00:00
|
|
|
def skip_clean? path
|
|
|
|
# TODO only skip the clean for the files that need it, we didn't get a
|
|
|
|
# comment about why we're skipping the clean, so you'll need to figure
|
|
|
|
# that out first --mxcl
|
|
|
|
true
|
2009-09-07 04:08:00 +00:00
|
|
|
end
|
|
|
|
end
|