aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/ruby-enterprise-edition.rb
diff options
context:
space:
mode:
authorAttila Györffy2009-09-28 15:40:53 +0100
committerMax Howell2009-10-01 16:21:30 +0100
commite142f054aa3e8a53b8444119c57fae96c0569349 (patch)
treec5b33dbdae819c9dc5a7ac400718ddd58616bb6a /Library/Formula/ruby-enterprise-edition.rb
parent3f316bfc35c1ec775bf7b2289077ef2c89efe861 (diff)
downloadhomebrew-e142f054aa3e8a53b8444119c57fae96c0569349.tar.bz2
Ruby Enterprise Edition 1.8.7-20090928
A server-oriented friendly branch of Ruby which includes various enhancements.
Diffstat (limited to 'Library/Formula/ruby-enterprise-edition.rb')
-rw-r--r--Library/Formula/ruby-enterprise-edition.rb12
1 files changed, 12 insertions, 0 deletions
diff --git a/Library/Formula/ruby-enterprise-edition.rb b/Library/Formula/ruby-enterprise-edition.rb
new file mode 100644
index 000000000..0044e23c6
--- /dev/null
+++ b/Library/Formula/ruby-enterprise-edition.rb
@@ -0,0 +1,12 @@
+require 'brewkit'
+
+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/'
+
+ def install
+ ENV.gcc_4_2 # fails with LLVM
+ system "./installer --auto #{prefix} --no-tcmalloc"
+ end
+end