aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rebar.rb
blob: c15503fd959c6950755343dddb45b050f65f5db4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Rebar <Formula
  head 'http://hg.basho.com/rebar/get/tip.tar.gz'
  homepage 'http://hg.basho.com/rebar/'

  depends_on 'erlang'

  def install
    system "./bootstrap"
    bin.install "rebar"
  end
end