110 lines
3.6 KiB
Ruby
110 lines
3.6 KiB
Ruby
require 'formula'
|
|
|
|
# Major releases of erlang should typically start out as separate formula in
|
|
# Homebrew-versions, and only be merged to master when things like couchdb and
|
|
# elixir are compatible.
|
|
class Erlang < Formula
|
|
homepage 'http://www.erlang.org'
|
|
# Download tarball from GitHub; it is served faster than the official tarball.
|
|
url "https://github.com/erlang/otp/archive/OTP-17.0.tar.gz"
|
|
sha1 "efa0dd17267ff41d47df94978b7573535c0da775"
|
|
|
|
head 'https://github.com/erlang/otp.git', :branch => 'master'
|
|
|
|
bottle do
|
|
sha1 "e66a588dbb8062943fc650316f7c8fac81d65134" => :mavericks
|
|
sha1 "33a0b50b5fb45ad2a66c80698eb6f6a865a67ade" => :mountain_lion
|
|
sha1 "a822dd97c1c12ead5458540d68b92615cf32e937" => :lion
|
|
end
|
|
|
|
resource "man" do
|
|
url "http://www.erlang.org/download/otp_doc_man_17.0.tar.gz"
|
|
sha1 "50106b77a527b9369793197c3d07a8abe4e0a62d"
|
|
end
|
|
|
|
resource "html" do
|
|
url "http://www.erlang.org/download/otp_doc_html_17.0.tar.gz"
|
|
sha1 "9a154d937c548f67f2c4e3691a6f36851a150be9"
|
|
end
|
|
|
|
option 'disable-hipe', "Disable building hipe; fails on various OS X systems"
|
|
option 'with-native-libs', 'Enable native library compilation'
|
|
option 'with-dirty-schedulers', 'Enable experimental dirty schedulers'
|
|
option 'no-docs', 'Do not install documentation'
|
|
|
|
depends_on "autoconf" => :build
|
|
depends_on "automake" => :build
|
|
depends_on "libtool" => :build
|
|
depends_on "openssl"
|
|
depends_on "unixodbc" if MacOS.version >= :mavericks
|
|
depends_on "fop" => :optional # enables building PDF docs
|
|
depends_on "wxmac" => :recommended # for GUI apps like observer
|
|
|
|
fails_with :llvm
|
|
|
|
def install
|
|
ohai "Compilation takes a long time; use `brew install -v erlang` to see progress" unless ARGV.verbose?
|
|
|
|
# Unset these so that building wx, kernel, compiler and
|
|
# other modules doesn't fail with an unintelligable error.
|
|
%w[LIBS FLAGS AFLAGS ZFLAGS].each { |k| ENV.delete("ERL_#{k}") }
|
|
|
|
ENV["FOP"] = "#{HOMEBREW_PREFIX}/bin/fop" if build.with? 'fop'
|
|
|
|
# Do this if building from a checkout to generate configure
|
|
system "./otp_build autoconf" if File.exist? "otp_build"
|
|
|
|
args = %W[
|
|
--disable-debug
|
|
--disable-silent-rules
|
|
--prefix=#{prefix}
|
|
--enable-kernel-poll
|
|
--enable-threads
|
|
--enable-sctp
|
|
--enable-dynamic-ssl-lib
|
|
--with-ssl=#{Formula["openssl"].opt_prefix}
|
|
--enable-shared-zlib
|
|
--enable-smp-support
|
|
]
|
|
|
|
args << "--enable-darwin-64bit" if MacOS.prefer_64_bit?
|
|
args << "--enable-native-libs" if build.with? "native-libs"
|
|
args << "--enable-dirty-schedulers" if build.with? "dirty-schedulers"
|
|
args << "--enable-wx" if build.with? "wxmac"
|
|
|
|
if MacOS.version >= :snow_leopard and MacOS::CLT.installed?
|
|
args << "--with-dynamic-trace=dtrace"
|
|
end
|
|
|
|
if build.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
|
|
args << '--disable-hipe'
|
|
else
|
|
args << '--enable-hipe'
|
|
end
|
|
|
|
system "./configure", *args
|
|
system "make"
|
|
ENV.j1 # Install is not thread-safe; can try to create folder twice and fail
|
|
system "make install"
|
|
|
|
unless build.include? 'no-docs'
|
|
(lib/'erlang').install resource('man').files('man')
|
|
doc.install resource('html')
|
|
end
|
|
end
|
|
|
|
def caveats; <<-EOS.undent
|
|
Man pages can be found in:
|
|
#{opt_lib}/erlang/man
|
|
|
|
Access them with `erl -man`, or add this directory to MANPATH.
|
|
EOS
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/erl", "-noshell", "-eval", "crypto:start().", "-s", "init", "stop"
|
|
end
|
|
end
|