2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-09-28 14:40:53 +00:00
|
|
|
|
|
|
|
class RubyEnterpriseEdition <Formula
|
2010-01-26 18:33:16 +00:00
|
|
|
url 'http://rubyforge.org/frs/download.php/68719/ruby-enterprise-1.8.7-2010.01.tar.gz'
|
|
|
|
md5 '587aaea02c86ddbb87394a340a25e554'
|
2009-09-28 14:40:53 +00:00
|
|
|
homepage 'http://rubyenterpriseedition.com/'
|
|
|
|
|
2010-04-05 23:24:39 +00:00
|
|
|
depends_on 'readline'
|
|
|
|
|
2009-10-14 21:43:55 +00:00
|
|
|
skip_clean 'bin/ruby'
|
|
|
|
|
2009-12-04 10:48:21 +00:00
|
|
|
aka :ree
|
|
|
|
|
2009-09-28 14:40:53 +00:00
|
|
|
def install
|
|
|
|
ENV.gcc_4_2 # fails with LLVM
|
2009-12-10 22:57:16 +00:00
|
|
|
args = ['./installer', "--auto", prefix, '--no-tcmalloc']
|
2010-04-05 23:24:39 +00:00
|
|
|
args << '-c' << '--enable-shared' if ARGV.include?('--enable-shared')
|
2009-11-15 19:16:01 +00:00
|
|
|
system *args
|
|
|
|
end
|
|
|
|
|
2010-02-27 17:26:27 +00:00
|
|
|
def caveats; <<-EOS.undent
|
|
|
|
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
|
2009-09-28 14:40:53 +00:00
|
|
|
end
|
|
|
|
end
|