homebrew-core/Formula/rebar.rb
Jon Gretar Borgthorsson c60bcc29b7 New formula: rebar
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2010-08-05 06:53:13 -07:00

13 lines
218 B
Ruby

require 'formula'
class Rebar <Formula
head 'http://hg.basho.com/rebar/get/tip.tar.gz'
homepage 'http://hg.basho.com/rebar/'
depends_on 'erlang'
def install
system "./bootstrap"
bin.install "rebar"
end
end