blob: 9dbffe30d7018e2d771e2fa614c988dd3123d52a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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
|