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/'
|
2013-05-18 01:56:33 +00:00
|
|
|
url 'http://ftp.ruby-lang.org/pub/ruby/2.0/ruby-2.0.0-p195.tar.bz2'
|
|
|
|
sha256 '0be32aef7a7ab6e3708cc1d65cd3e0a99fa801597194bbedd5799c11d652eb5b'
|
2012-04-20 17:05:30 +00:00
|
|
|
|
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-09-14 16:07:47 +00:00
|
|
|
option :universal
|
2013-02-24 17:46:34 +00:00
|
|
|
option 'with-suffix', 'Suffix commands with "20"'
|
2012-09-14 16:07:47 +00:00
|
|
|
option 'with-doc', 'Install documentation'
|
2012-09-17 01:17:32 +00:00
|
|
|
option 'with-tcltk', 'Install with Tcl/Tk support'
|
2012-09-14 16:07:47 +00:00
|
|
|
|
2013-02-07 01:35:03 +00:00
|
|
|
if build.universal?
|
|
|
|
depends_on 'autoconf' => :build
|
|
|
|
elsif build.head?
|
|
|
|
depends_on :autoconf
|
|
|
|
end
|
|
|
|
|
2012-04-20 17:05:30 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2012-11-11 03:12:26 +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'
|
2013-02-24 17:46:34 +00:00
|
|
|
depends_on 'openssl' if MacOS.version >= :mountain_lion
|
2013-04-12 05:26:10 +00:00
|
|
|
depends_on :x11 if build.with? 'tcltk'
|
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
|
|
|
|
2009-09-07 04:08:00 +00:00
|
|
|
def install
|
2012-08-13 15:04:09 +00:00
|
|
|
system "autoconf" if build.head?
|
2010-08-20 03:00:37 +00:00
|
|
|
|
2013-04-12 05:26:10 +00:00
|
|
|
args = %W[--prefix=#{prefix} --enable-shared]
|
|
|
|
args << "--program-suffix=20" if build.with? "suffix"
|
2012-08-13 15:04:09 +00:00
|
|
|
args << "--with-arch=x86_64,i386" if build.universal?
|
2013-04-12 05:26:10 +00:00
|
|
|
args << "--with-out-ext=tk" unless build.with? "tcltk"
|
|
|
|
args << "--disable-install-doc" unless build.with? "doc"
|
2013-03-18 13:23:54 +00:00
|
|
|
args << "--disable-dtrace" unless MacOS::CLT.installed?
|
2010-01-19 11:41:37 +00:00
|
|
|
|
2013-02-24 17:46:34 +00:00
|
|
|
# OpenSSL is deprecated on OS X 10.8 and Ruby can't find the outdated
|
|
|
|
# version (0.9.8r 8 Feb 2011) that ships with the system.
|
|
|
|
# See discussion https://github.com/sstephenson/ruby-build/issues/304
|
|
|
|
# and https://github.com/mxcl/homebrew/pull/18054
|
|
|
|
if MacOS.version >= :mountain_lion
|
2013-04-12 05:26:10 +00:00
|
|
|
args << "--with-openssl-dir=#{Formula.factory('openssl').opt_prefix}"
|
2013-02-24 17:46:34 +00:00
|
|
|
end
|
|
|
|
|
2010-08-20 03:00:37 +00:00
|
|
|
# Put gem, site and vendor folders in the HOMEBREW_PREFIX
|
2012-05-16 05:11:13 +00:00
|
|
|
ruby_lib = HOMEBREW_PREFIX/"lib/ruby"
|
|
|
|
(ruby_lib/'site_ruby').mkpath
|
|
|
|
(ruby_lib/'vendor_ruby').mkpath
|
|
|
|
(ruby_lib/'gems').mkpath
|
|
|
|
|
|
|
|
(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"
|
|
|
|
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:
|
2013-01-26 06:36:48 +00:00
|
|
|
#{opt_prefix}/bin
|
2010-08-20 03:00:37 +00:00
|
|
|
|
|
|
|
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
|