2009-10-15 08:07:12 +00:00
|
|
|
require 'formula'
|
2009-06-05 22:38:23 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ErlangManuals < Formula
|
2011-12-14 19:36:37 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_man_R15B.tar.gz'
|
|
|
|
md5 '9738da523737712a9db87db0dee05338'
|
2009-09-02 15:11:46 +00:00
|
|
|
end
|
|
|
|
|
2011-03-26 14:06:08 +00:00
|
|
|
class ErlangHtmls < Formula
|
2011-12-14 19:36:37 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_html_R15B.tar.gz'
|
|
|
|
md5 '80553f4730b04aad4c9994590bad3fe6'
|
2011-03-26 14:06:08 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class ErlangHeadManuals < Formula
|
2011-12-14 19:36:37 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_man_R15B.tar.gz'
|
|
|
|
md5 '9738da523737712a9db87db0dee05338'
|
2010-08-21 22:56:39 +00:00
|
|
|
end
|
|
|
|
|
2011-03-26 14:06:08 +00:00
|
|
|
class ErlangHeadHtmls < Formula
|
2011-12-14 19:36:37 +00:00
|
|
|
url 'http://erlang.org/download/otp_doc_html_R15B.tar.gz'
|
|
|
|
md5 '80553f4730b04aad4c9994590bad3fe6'
|
2011-03-26 14:06:08 +00:00
|
|
|
end
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Erlang < Formula
|
2010-08-21 22:56:39 +00:00
|
|
|
homepage 'http://www.erlang.org'
|
2011-06-16 14:33:16 +00:00
|
|
|
# Download tarball from GitHub; it is served faster than the official tarball.
|
2011-12-14 19:36:37 +00:00
|
|
|
url 'https://github.com/erlang/otp/tarball/OTP_R15B'
|
|
|
|
md5 '91c939a56e7f3c492b4ce99c8babe3b2'
|
2010-08-21 22:56:39 +00:00
|
|
|
|
2012-01-23 04:32:15 +00:00
|
|
|
bottle do
|
2012-01-29 02:21:26 +00:00
|
|
|
# Bottle built on OS X 10.7.2 using Xcode 4.1 using:
|
|
|
|
#
|
|
|
|
# brew install erlang --build-bottle --use-gcc
|
2012-01-29 04:49:09 +00:00
|
|
|
url 'https://downloads.sf.net/project/machomebrew/Bottles/erlang-R15B-bottle.tar.gz'
|
2012-01-29 02:21:26 +00:00
|
|
|
sha1 '4c81febc679dc9e9c27e66317fc317df9a5a40e7'
|
2012-01-23 04:32:15 +00:00
|
|
|
end
|
2011-08-31 07:53:23 +00:00
|
|
|
|
2011-06-16 14:33:16 +00:00
|
|
|
head 'https://github.com/erlang/otp.git', :branch => 'dev'
|
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
|
|
|
|
2012-03-18 20:33:24 +00:00
|
|
|
if MacOS.xcode_version >= "4.3"
|
|
|
|
# remove the autoreconf if possible
|
|
|
|
depends_on "automake" => :build
|
|
|
|
depends_on "libtool" => :build
|
|
|
|
end
|
|
|
|
|
|
|
|
fails_with :llvm do
|
|
|
|
build 2334
|
|
|
|
end
|
|
|
|
|
2010-08-09 17:00:12 +00:00
|
|
|
def options
|
2010-09-22 04:34:27 +00:00
|
|
|
[
|
|
|
|
['--disable-hipe', "Disable building hipe; fails on various OS X systems."],
|
2011-10-25 17:27:53 +00:00
|
|
|
['--halfword', 'Enable halfword emulator (64-bit builds only)'],
|
2011-05-27 17:02:11 +00:00
|
|
|
['--time', '"brew test --time" to include a time-consuming test.'],
|
|
|
|
['--no-docs', 'Do not install documentation.']
|
2010-09-22 04:34:27 +00:00
|
|
|
]
|
2010-08-09 17:00:12 +00:00
|
|
|
end
|
|
|
|
|
2009-06-05 22:38:23 +00:00
|
|
|
def install
|
2012-03-20 23:56:19 +00:00
|
|
|
ohai "Compilation takes a long time; use `brew install -v erlang` to see progress" unless ARGV.verbose?
|
|
|
|
|
2011-10-25 17:27:53 +00:00
|
|
|
if ENV.compiler == :llvm
|
|
|
|
# Don't use optimizations. Fixes build on Lion/Xcode 4.2
|
|
|
|
ENV.remove_from_cflags /-O./
|
|
|
|
ENV.append_to_cflags '-O0'
|
|
|
|
end
|
2009-11-09 17:56:16 +00:00
|
|
|
|
2011-06-16 14:33:16 +00:00
|
|
|
# Do this if building from a checkout to generate configure
|
2010-04-19 19:20:13 +00:00
|
|
|
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",
|
2011-10-25 17:27:53 +00:00
|
|
|
"--enable-shared-zlib",
|
2010-08-08 04:04:37 +00:00
|
|
|
"--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
|
|
|
|
2011-10-25 17:27:53 +00:00
|
|
|
if MacOS.prefer_64_bit?
|
|
|
|
args << "--enable-darwin-64bit"
|
|
|
|
args << "--enable-halfword-emulator" if ARGV.include? '--halfword' # Does not work with HIPE yet. Added for testing only
|
|
|
|
end
|
2009-09-02 15:11:46 +00:00
|
|
|
|
2010-08-08 04:04:37 +00:00
|
|
|
system "./configure", *args
|
2011-04-08 18:16:37 +00:00
|
|
|
system "touch lib/wx/SKIP" if MacOS.snow_leopard?
|
2009-06-05 22:38:23 +00:00
|
|
|
system "make"
|
|
|
|
system "make install"
|
2009-09-02 15:11:46 +00:00
|
|
|
|
2011-05-27 17:02:11 +00:00
|
|
|
unless ARGV.include? '--no-docs'
|
|
|
|
manuals = ARGV.build_head? ? ErlangHeadManuals : ErlangManuals
|
|
|
|
manuals.new.brew { man.install Dir['man/*'] }
|
2011-03-26 14:06:08 +00:00
|
|
|
|
2011-05-27 17:02:11 +00:00
|
|
|
htmls = ARGV.build_head? ? ErlangHeadHtmls : ErlangHtmls
|
|
|
|
htmls.new.brew { doc.install Dir['*'] }
|
|
|
|
end
|
2009-06-05 22:38:23 +00:00
|
|
|
end
|
2009-12-06 15:30:23 +00:00
|
|
|
|
|
|
|
def test
|
2011-09-01 20:00:28 +00:00
|
|
|
`#{bin}/erl -noshell -eval 'crypto:start().' -s init stop`
|
2010-09-20 18:55:49 +00:00
|
|
|
|
|
|
|
# This test takes some time to run, but per bug #120 should finish in
|
|
|
|
# "less than 20 minutes". It takes a few minutes on a Mac Pro (2009).
|
|
|
|
if ARGV.include? "--time"
|
2011-12-14 19:36:37 +00:00
|
|
|
`#{bin}/dialyzer --build_plt -r #{lib}/erlang/lib/kernel-2.15/ebin/`
|
2010-09-20 18:55:49 +00:00
|
|
|
end
|
2009-12-06 15:30:23 +00:00
|
|
|
end
|
2009-09-05 22:24:57 +00:00
|
|
|
end
|