blob: 0fdd7f1eb327c0d78a9171a4a4fc6f7f40ea16e0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
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
|