homebrew-core/Formula/ruby.rb

73 lines
2.2 KiB
Ruby
Raw Normal View History

require 'formula'
2009-09-07 04:08:00 +00:00
2011-03-10 05:11:03 +00:00
class Ruby < Formula
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-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
option 'with-suffix', 'Suffix commands with "20"'
2012-09-14 16:07:47 +00:00
option 'with-doc', 'Install documentation'
option 'with-tcltk', 'Install with Tcl/Tk support'
2012-09-14 16:07:47 +00:00
if build.universal?
depends_on 'autoconf' => :build
elsif build.head?
depends_on :autoconf
end
depends_on 'pkg-config' => :build
depends_on 'readline'
2012-04-19 02:02:24 +00:00
depends_on 'gdbm'
depends_on 'libyaml'
depends_on 'openssl' if MacOS.version >= :mountain_lion
2013-04-12 05:26:10 +00:00
depends_on :x11 if build.with? 'tcltk'
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
system "autoconf" if build.head?
2013-04-12 05:26:10 +00:00
args = %W[--prefix=#{prefix} --enable-shared]
args << "--program-suffix=20" if build.with? "suffix"
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?
# 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}"
end
# Put gem, site and vendor folders in the HOMEBREW_PREFIX
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'
system "./configure", *args
2009-09-07 04:08:00 +00:00
system "make"
system "make install"
end
2010-07-18 19:31:09 +00:00
def caveats; <<-EOS.undent
NOTE: By default, gem installed binaries will be placed into:
#{opt_prefix}/bin
You may want to add this to your PATH.
EOS
end
2009-09-07 04:08:00 +00:00
end