homebrew-core/Formula/rebar.rb
Cliff Rowley ef92d76fcf rebar 2.0.0
Closes Homebrew/homebrew#21613.

Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2013-08-02 10:46:28 -07:00

18 lines
338 B
Ruby

require 'formula'
class Rebar < Formula
homepage 'https://github.com/rebar/rebar'
url 'https://github.com/rebar/rebar/archive/2.0.0.zip'
sha1 '4775839097324107c730e094e42ce87b456b655c'
depends_on 'erlang'
def install
system './bootstrap'
bin.install 'rebar'
end
test do
system 'rebar', '--version'
end
end