aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-enterprise-edition.rb
blob: 9b33ea6d32cab1b47995ee420e1b56c03ef5d265 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
require 'formula'

class RubyEnterpriseEdition <Formula
  url 'http://rubyforge.org/frs/download.php/64475/ruby-enterprise-1.8.7-20090928.tar.gz'
  md5 'ae00018ce89d95419dfde370fcd485ac'
  homepage 'http://rubyenterpriseedition.com/'

  skip_clean 'bin/ruby'

  def install
    ENV.gcc_4_2 # fails with LLVM
    system "./installer --auto #{prefix} --no-tcmalloc"
  end
end