2010-07-29 13:15:00 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Rebar < Formula
|
2011-05-27 05:02:55 +00:00
|
|
|
head "https://github.com/basho/rebar.git", :branch => "master"
|
2011-03-24 21:20:24 +00:00
|
|
|
homepage 'https://github.com/basho/rebar/wiki'
|
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"
|
2012-04-18 19:39:22 +00:00
|
|
|
(prefix+'etc/bash_completion.d').install 'priv/shell-completion/bash/rebar'
|
2010-10-21 14:54:17 +00:00
|
|
|
end
|
2010-07-29 13:15:00 +00:00
|
|
|
end
|