aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/unittest.rb
blob: 60194b02e1741bb10cc76665892c64bc6e34cbdc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
class Unittest < Formula
  homepage "http://unittest.red-bean.com/"
  url "http://unittest.red-bean.com/tar/unittest-0.50-62.tar.gz"
  sha1 "c9012061963ac1330c6c6efc8cdbbb79360757fe"

  fails_with :llvm do
    build 2334
  end

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