homebrew-core/Formula/rebar.rb

21 lines
411 B
Ruby
Raw Normal View History

require "formula"
class Rebar < Formula
homepage "https://github.com/rebar/rebar"
url "https://github.com/rebar/rebar/archive/2.3.0.tar.gz"
sha1 "4fc7eed4f3210c1547ba5ddfb5d3dc54a6422c37"
head "https://github.com/rebar/rebar.git", :branch => "master"
2013-08-08 15:25:47 +00:00
depends_on "erlang"
def install
system "./bootstrap"
bin.install "rebar"
end
test do
system bin/"rebar", "--version"
end
end