Skip to content

Commit

Permalink
elixir: use a requirement with a default formula for erlang
Browse files Browse the repository at this point in the history
  • Loading branch information
jacknagel committed Sep 5, 2013
1 parent fdce18e commit b4e9bb5
Showing 1 changed file with 25 additions and 1 deletion.
26 changes: 25 additions & 1 deletion Formula/elixir.rb
@@ -1,13 +1,37 @@
require 'formula'

class ErlangInstalled < Requirement
fatal true
default_formula 'erlang'
env :userpaths

satisfy {
erl = which('erl') and begin
`#{erl} -noshell -eval 'io:fwrite("~s~n", [erlang:system_info(otp_release)]).' -s erlang halt | grep -q '^R1[6789]'`
$?.exitstatus == 0
end
}

def message; <<-EOS.undent
Erlang R16 is required to install.
You can install this with:
brew install erlang
Or you can use an official installer from:
http://www.erlang.org/
EOS
end
end

class Elixir < Formula
homepage 'http://elixir-lang.org/'
url 'https://github.com/elixir-lang/elixir/archive/v0.10.2.tar.gz'
sha1 'fd12cfc3d7ebba9087ea1d13de6ad940c644ecf1'

head 'https://github.com/elixir-lang/elixir.git'

depends_on 'erlang'
depends_on ErlangInstalled

def install
system "make"
Expand Down

0 comments on commit b4e9bb5

Please sign in to comment.