summaryrefslogtreecommitdiff
path: root/homebrew/rcm.rb.in
blob: 3b858ebc88cac51d0fdfbba34464630caf60906c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
require 'formula'

class Rcm < Formula
  homepage 'http://thoughtbot.github.io/rcm'
  url 'http://thoughtbot.github.io/@PACKAGE@/dist/@DIST_ARCHIVES@'
  sha1 '@DIST_SHA@'

  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make", "install"
  end

  test do
    system "lsrc"
  end
end