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

class Rebar < Formula
  head "git://github.com/basho/rebar.git", :branch => "master"
  homepage 'https://github.com/basho/rebar/wiki'

  depends_on 'erlang'

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