blob: c0092ee3112a90b0b6a08b7267e12a3120ebf46d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
  | 
require 'formula'
class Unittest < Formula
  homepage 'http://unittest.red-bean.com/'
  url 'http://unittest.red-bean.com/tar/unittest-0.50-62.tar.gz'
  sha1 '95d15db78e60d0f96b321177c2f3f52c619634b3'
  fails_with :llvm do
    build 2334
  end
  def install
    system "./configure", "--disable-debug", "--disable-dependency-tracking",
                          "--prefix=#{prefix}"
    system "make install"
  end
end
  |