2010-07-29 13:15:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Rebar < Formula
|
2010-10-21 14:54:17 +00:00
|
|
|
head 'http://hg.basho.com/rebar/get/tip.tar.gz'
|
|
|
|
homepage 'http://hg.basho.com/rebar/'
|
2010-07-29 13:15:00 +00:00
|
|
|
|
2010-10-21 14:54:17 +00:00
|
|
|
depends_on 'erlang'
|
2010-07-29 13:15:00 +00:00
|
|
|
|
2010-10-21 14:54:17 +00:00
|
|
|
def install
|
|
|
|
system "./bootstrap"
|
|
|
|
bin.install "rebar"
|
|
|
|
end
|
2010-07-29 13:15:00 +00:00
|
|
|
end
|