blob: b4ce111fb259e34028c77bf35d5813fbbc6f7dd2 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
 | require 'formula'
class Cppunit <Formula
  url 'http://downloads.sourceforge.net/project/cppunit/cppunit/1.12.1/cppunit-1.12.1.tar.gz'
  homepage 'http://sourceforge.net/apps/mediawiki/cppunit/'
  md5 'bd30e9cf5523cdfc019b94f5e1d7fd19'
  def install
    system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
    system "make install"
  end
end
 |