homebrew-core/Formula/elixir.rb
Andrey Nikolaev ae8e0fc698 elixir 0.12.0
Closes Homebrew/homebrew#25257.

Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
2013-12-16 15:04:00 +00:00

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.12.0.zip'
sha1 '1f2bf65556b4620fa6dbcadc638d74851f19a212'
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