homebrew-core/Formula/rebar.rb

15 lines
332 B
Ruby
Raw Normal View History

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"
homepage 'https://github.com/basho/rebar/wiki'
depends_on 'erlang'
def install
system "./bootstrap"
bin.install "rebar"
(prefix+'etc/bash_completion.d').install 'priv/shell-completion/bash/rebar'
end
end