c60bcc29b7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
13 lines
218 B
Ruby
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
|