2014-05-28 14:45:55 +00:00
|
|
|
require "formula"
|
|
|
|
|
|
|
|
class ElixirBuild < Formula
|
|
|
|
homepage "https://github.com/mururu/elixir-build"
|
|
|
|
head "https://github.com/mururu/elixir-build.git"
|
2014-10-01 08:30:29 +00:00
|
|
|
url "https://github.com/mururu/elixir-build/archive/v20141001.tar.gz"
|
|
|
|
sha1 "12412f1c75924fe1ef3f5bca222616a7db614146"
|
2014-05-28 14:45:55 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
ENV["PREFIX"] = prefix
|
|
|
|
system "./install.sh"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/elixir-build", "--version"
|
|
|
|
end
|
|
|
|
end
|