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
|
2010-05-28 21:19:27 +00:00
|
|
|
homepage 'http://www.ruby-lang.org/en/'
|
2012-04-20 17:05:30 +00:00
|
|
|
url 'http://ftp.ruby-lang.org/pub/ruby/1.9/ruby-1.9.3-p194.tar.gz'
|
|
|
|
sha256 '46e2fa80be7efed51bd9cdc529d1fe22ebc7567ee0f91db4ab855438cf4bd8bb'
|
|
|
|
|
2012-05-10 14:10:12 +00:00
|
|
|
head 'http://svn.ruby-lang.org/repos/ruby/trunk/'
|
2009-10-15 18:59:18 +00:00
|
|
|
|
2012-05-15 03:34:59 +00:00
|
|
|
depends_on 'autoconf' => :build if MacOS.xcode_version.to_f >= 4.3 and ARGV.build_head?
|
2012-04-20 17:05:30 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2009-10-15 18:59:18 +00:00
|
|
|
depends_on 'readline'
|
2012-04-19 02:02:24 +00:00
|
|
|
depends_on 'gdbm'
|
2010-08-20 02:44:18 +00:00
|
|
|
depends_on 'libyaml'
|
2010-07-09 19:40:41 +00:00
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
fails_with :llvm do
|
|
|
|
build 2326
|
|
|
|
end
|
2011-03-21 21:24:22 +00:00
|
|
|
|
|
|
|
# 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
|
|
|
|
|
2012-05-15 03:34:59 +00:00
|
|
|
system "autoconf" if ARGV.build_head?
|
2010-08-20 03:00:37 +00:00
|
|
|
|
|
|
|
args = ["--prefix=#{prefix}",
|
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-04-21 16:42:27 +00:00
|
|
|
args << "--with-arch=x86_64,i386" if ARGV.build_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
|
|
|
|
2012-02-12 19:16:47 +00:00
|
|
|
(lib+'ruby').install_symlink ruby_lib+'site_ruby',
|
|
|
|
ruby_lib+'vendor_ruby',
|
|
|
|
ruby_lib+'gems'
|
2010-08-21 01:29:38 +00:00
|
|
|
|
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-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
|