homebrew-core/Formula/elixir.rb

55 lines
1.4 KiB
Ruby
Raw Normal View History

class Erlang18Requirement < Requirement
fatal true
env :userpaths
2014-06-16 15:06:55 +00:00
default_formula "erlang"
2015-04-19 10:26:12 +00:00
satisfy do
erl = which("erl")
next unless erl
`#{erl} -noshell -eval 'io:fwrite("~s", [erlang:system_info(otp_release) >= "18"])' -s erlang halt | grep -q '^true'`
2015-04-19 10:26:12 +00:00
$?.exitstatus == 0
end
def message; <<-EOS.undent
Erlang 18+ is required to install.
You can install this with:
2014-06-16 15:06:55 +00:00
brew install erlang
Or you can use an official installer from:
http://www.erlang.org/
EOS
end
end
class Elixir < Formula
desc "Functional metaprogramming aware language built on Erlang VM"
2015-04-19 10:26:12 +00:00
homepage "http://elixir-lang.org/"
url "https://github.com/elixir-lang/elixir/archive/v1.2.1.tar.gz"
sha256 "9def4c1ee8eede93bf7e64c1861956dc30b2edda233fef423b790c4b31aeda54"
2015-04-19 10:26:12 +00:00
head "https://github.com/elixir-lang/elixir.git"
bottle do
2016-01-14 23:33:57 +00:00
sha256 "81c0ceb22e1ccf8b4a64635e0cf3c8ba2b6ce163210b8abd52ec5fc6ae974b97" => :el_capitan
sha256 "b6855bffad2d118407161484681452f3a192594ecb58344b8d060017df83c945" => :yosemite
sha256 "32d9f8271b4519ab0036d8b1194515c918b86494454a9f3db471885be9db192f" => :mavericks
end
depends_on Erlang18Requirement
def install
system "make"
2015-04-19 10:26:12 +00:00
bin.install Dir["bin/*"] - Dir["bin/*.{bat,ps1}"]
Dir.glob("lib/*/ebin") do |path|
2013-09-05 20:25:42 +00:00
app = File.basename(File.dirname(path))
(lib/app).install path
end
end
2013-03-25 18:34:48 +00:00
test do
system "#{bin}/elixir", "-v"
end
end