2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-05 22:38:23 +00:00
|
|
|
|
2009-09-01 00:06:11 +00:00
|
|
|
class ErlangManuals <Formula
|
2010-02-24 13:28:01 +00:00
|
|
|
url 'http://www.erlang.org/download/otp_doc_man_R13B04.tar.gz'
|
2010-02-24 17:24:27 +00:00
|
|
|
md5 '681aaef70affc64743f4e8c0675034af'
|
2009-09-02 15:11:46 +00:00
|
|
|
end
|
|
|
|
|
2010-08-21 22:56:39 +00:00
|
|
|
class ErlangHeadManuals <Formula
|
|
|
|
url 'http://www.erlang.org/download/otp_doc_man_R14A.tar.gz'
|
|
|
|
md5 'b57a7846818ad144b1b6ecc0a54de2ae'
|
|
|
|
end
|
|
|
|
|
2009-06-05 22:38:23 +00:00
|
|
|
class Erlang <Formula
|
2010-08-21 22:56:39 +00:00
|
|
|
# Download from GitHub. Much faster than official tarball.
|
2010-04-07 05:58:35 +00:00
|
|
|
url "git://github.com/erlang/otp.git", :tag => "OTP_R13B04"
|
2010-06-30 03:33:37 +00:00
|
|
|
version 'R13B04'
|
2010-08-21 22:56:39 +00:00
|
|
|
homepage 'http://www.erlang.org'
|
|
|
|
|
|
|
|
head "git://github.com/erlang/otp.git", :tag => "OTP_R14A"
|
2009-09-02 15:11:46 +00:00
|
|
|
|
2010-06-30 03:33:37 +00:00
|
|
|
# We can't strip the beam executables or any plugins, there isn't really
|
|
|
|
# anything else worth stripping and it takes a really, long time to run
|
|
|
|
# `file` over everything in lib because there is almost 4000 files (and
|
|
|
|
# really erlang guys! what's with that?! Most of them should be in share/erlang!)
|
|
|
|
# may as well skip bin too, everything is just shell scripts
|
|
|
|
skip_clean ['lib', 'bin']
|
2009-09-18 18:16:39 +00:00
|
|
|
|
2010-08-09 17:00:12 +00:00
|
|
|
def options
|
|
|
|
[['--disable-hipe', "Disable building hipe; fails on various OS X systems."]]
|
|
|
|
end
|
|
|
|
|
2009-06-05 22:38:23 +00:00
|
|
|
def install
|
2009-08-07 14:41:43 +00:00
|
|
|
ENV.deparallelize
|
2010-06-30 04:39:02 +00:00
|
|
|
fails_with_llvm "see http://github.com/mxcl/homebrew/issues/issue/120"
|
2009-11-09 17:56:16 +00:00
|
|
|
|
2010-04-19 19:20:13 +00:00
|
|
|
# If building from GitHub, this step is required (but not for tarball downloads.)
|
|
|
|
system "./otp_build autoconf" if File.exist? "otp_build"
|
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
args = ["--disable-debug",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-kernel-poll",
|
|
|
|
"--enable-threads",
|
|
|
|
"--enable-dynamic-ssl-lib",
|
|
|
|
"--enable-smp-support"]
|
2009-11-09 17:56:16 +00:00
|
|
|
|
|
|
|
unless ARGV.include? '--disable-hipe'
|
|
|
|
# HIPE doesn't strike me as that reliable on OS X
|
|
|
|
# http://syntatic.wordpress.com/2008/06/12/macports-erlang-bus-error-due-to-mac-os-x-1053-update/
|
|
|
|
# http://www.erlang.org/pipermail/erlang-patches/2008-September/000293.html
|
2010-08-08 04:04:37 +00:00
|
|
|
args << '--enable-hipe'
|
2009-11-09 17:56:16 +00:00
|
|
|
end
|
2009-09-05 22:24:57 +00:00
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
args << "--enable-darwin-64bit" if snow_leopard_64?
|
2009-09-02 15:11:46 +00:00
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
system "./configure", *args
|
2009-11-11 17:25:48 +00:00
|
|
|
system "touch lib/wx/SKIP" if MACOS_VERSION >= 10.6
|
2009-06-05 22:38:23 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
2009-09-02 15:11:46 +00:00
|
|
|
|
2010-08-21 22:56:39 +00:00
|
|
|
manuals = ARGV.build_head? ? ErlangHeadManuals : ErlangManuals
|
|
|
|
manuals.new.brew { man.install Dir['man/*'] }
|
2010-06-30 03:33:37 +00:00
|
|
|
|
|
|
|
# See: http://github.com/mxcl/homebrew/issues/issue/1317
|
|
|
|
(lib+"erlang/lib/tools-2.6.5.1/emacs").install "lib/tools/emacs/erlang-skels.el"
|
2009-06-05 22:38:23 +00:00
|
|
|
end
|
2009-12-06 15:30:23 +00:00
|
|
|
|
|
|
|
def test
|
2010-06-30 04:39:02 +00:00
|
|
|
`erl -noshell -eval 'crypto:start().' -s init stop`
|
2009-12-06 15:30:23 +00:00
|
|
|
end
|
2009-09-05 22:24:57 +00:00
|
|
|
end
|