aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/rebar.rb
blob: a24d05ecdf8bdf3f3b00381dbb2ccb8562ecdc89 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 'formula'

class Rebar < Formula
  homepage 'https://github.com/rebar/rebar'
  url 'https://github.com/rebar/rebar/archive/2.2.0.tar.gz'
  sha1 '8b246586383d8809c7681f3e56bfc8d8c3b3757e'

  head "https://github.com/rebar/rebar.git", :branch => "master"

  depends_on 'erlang'

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

  test do
    system 'rebar', '--version'
  end
end