homebrew-core/Formula/rebar.rb
Anthony Ramine 89d7f46ba0 rebar: install bash completion
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
2012-04-18 18:57:30 -07:00

14 lines
332 B
Ruby

require 'formula'
class Rebar < Formula
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