elixir: use a requirement with a default formula for erlang
This commit is contained in:
parent
fdce18e719
commit
b4e9bb5f5e
1 changed files with 25 additions and 1 deletions
|
@ -1,5 +1,29 @@
|
|||
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'
|
||||
|
@ -7,7 +31,7 @@ class Elixir < Formula
|
|||
|
||||
head 'https://github.com/elixir-lang/elixir.git'
|
||||
|
||||
depends_on 'erlang'
|
||||
depends_on ErlangInstalled
|
||||
|
||||
def install
|
||||
system "make"
|
||||
|
|
Loading…
Reference in a new issue