blob: f6b11249343da9fae460e0c906f3408dd71546a1 (
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.4.0.tar.gz"
  sha1 "e694cb6de0f4046166226f096a8cd1e52cb42555"
  head "https://github.com/rebar/rebar.git", :branch => "master"
  depends_on "erlang"
  def install
    system "./bootstrap"
    bin.install "rebar"
  end
  test do
    system bin/"rebar", "--version"
  end
end
  |