homebrew-core/Formula/elixir-build.rb
Andrew Kofink d4942ac97e elixir-build 20140421
Closes Homebrew/homebrew#29654.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2014-06-29 09:43:45 -07:00

17 lines
414 B
Ruby

require "formula"
class ElixirBuild < Formula
homepage "https://github.com/mururu/elixir-build"
head "https://github.com/mururu/elixir-build.git"
url "https://github.com/mururu/elixir-build/archive/v20140421.tar.gz"
sha1 "844b8e3e05c5606d272e2dca0f92dfac56bb58d5"
def install
ENV["PREFIX"] = prefix
system "./install.sh"
end
test do
system "#{bin}/elixir-build", "--version"
end
end