73a1a65c4e
Closes Homebrew/homebrew#23003. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
49 lines
1 KiB
Ruby
49 lines
1 KiB
Ruby
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.3.tar.gz'
|
|
sha1 '720e86216746fce905d60e3ededa2df3b3ec9bc6'
|
|
|
|
head 'https://github.com/elixir-lang/elixir.git'
|
|
|
|
depends_on ErlangInstalled
|
|
|
|
def install
|
|
system "make"
|
|
bin.install Dir['bin/*'] - Dir['bin/*.bat']
|
|
|
|
Dir['lib/*/ebin'].each do |path|
|
|
app = File.basename(File.dirname(path))
|
|
(lib/app).install path
|
|
end
|
|
end
|
|
|
|
test do
|
|
system "#{bin}/elixir", "-v"
|
|
end
|
|
end
|