aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMax Howell2009-06-05 23:38:23 +0100
committerMax Howell2009-06-05 23:38:23 +0100
commit0c0c36732c1f03a68a0fdfcb3a7ad5874f67c98e (patch)
tree6ae75c57062655a82e6505703473adccabe047fd /Library/Formula
parentb0da58a49e1dbc90b21eabd3daa3d7e00b8d4ba6 (diff)
downloadhomebrew-0c0c36732c1f03a68a0fdfcb3a7ad5874f67c98e.tar.bz2
Erlang formula
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/erlang.rb14
1 files changed, 14 insertions, 0 deletions
diff --git a/Library/Formula/erlang.rb b/Library/Formula/erlang.rb
new file mode 100644
index 000000000..7dca96d6d
--- /dev/null
+++ b/Library/Formula/erlang.rb
@@ -0,0 +1,14 @@
+require 'brewkit'
+
+class Erlang <Formula
+ @homepage='http://www.erlang.org'
+ @url='http://erlang.org/download/otp_src_R13B.tar.gz'
+ @md5='6d8c256468a198458b9f08ba6aa1a384'
+
+ def install
+ ENV['MAKEFLAGS']='' #parallel not work
+ system "./configure --disable-debug --prefix='#{prefix}' --enable-kernel-poll --enable-threads --enable-dynamic-ssl-lib --enable-smp-support --enable-hipe"
+ system "make"
+ system "make install"
+ end
+end \ No newline at end of file