d4942ac97e
Closes Homebrew/homebrew#29654. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
17 lines
414 B
Ruby
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
|