homebrew-core/Formula/ruby-enterprise-edition.rb

45 lines
1.4 KiB
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class RubyEnterpriseEdition < Formula
url 'http://rubyenterpriseedition.googlecode.com/files/ruby-enterprise-1.8.7-2011.03.tar.gz'
md5 '038604ce25349e54363c5df9cd535ec8'
homepage 'http://rubyenterpriseedition.com/'
depends_on 'readline'
2011-03-21 21:24:22 +00:00
fails_with_llvm "fails with LLVM"
skip_clean 'bin/ruby'
2010-08-10 20:05:20 +00:00
def options
[['--enable-shared', "Compile shared, but see caveats."]]
end
def install
readline = Formula.factory('readline').prefix
args = ['./installer', "--auto", prefix, '--no-tcmalloc']
2010-08-10 20:05:20 +00:00
args << '-c' << '--enable-shared' if ARGV.include? '--enable-shared'
# Configure will complain that this is an unknown option, but it is actually OK
args << '-c' << "--with-readline-dir=#{readline}"
2009-11-15 19:16:01 +00:00
system *args
end
2010-02-27 17:26:27 +00:00
def caveats; <<-EOS.undent
Consider using RVM or Cinderella to manage Ruby environments:
2010-07-18 19:31:09 +00:00
* RVM: http://rvm.beginrescueend.com/
* Cinderella: http://www.atmos.org/cinderella/
2010-07-18 19:31:09 +00:00
2010-02-27 17:26:27 +00:00
By default we don't compile REE as a shared library. From their documentation:
Please note that enabling --enable-shared will make the Ruby interpreter
about 20% slower.
2009-11-15 19:16:01 +00:00
2010-02-27 17:26:27 +00:00
For desktop environments (particularly ones requiring RubyCocoa) this is
acceptable and even desirable.
2009-11-15 19:16:01 +00:00
2010-02-27 17:26:27 +00:00
If you need REE to be compiled as a shared library, you can re-compile like so:
brew install ruby-enterprise-edition --force --enable-shared
2009-11-15 19:16:01 +00:00
EOS
end
end