diff options
| author | David Höppner | 2010-08-30 16:43:32 +0200 | 
|---|---|---|
| committer | David Höppner | 2010-08-30 16:43:32 +0200 | 
| commit | 9d9aa3cfb94c11d376c2aa5bf65f9ae42359e563 (patch) | |
| tree | 9b1c0d341b856d424a3b5955e0fbd389225c22fa | |
| parent | a32fe108fc70da4a2201364e1940c12c5b424506 (diff) | |
| download | homebrew-9d9aa3cfb94c11d376c2aa5bf65f9ae42359e563.tar.bz2 | |
New formula cpptest
CppTest is a portable and powerful, yet simple, unit testing
framework for handling automated tests in C++. The focus lies
on usability and extendability.
| -rw-r--r-- | Library/Formula/cpptest.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/Library/Formula/cpptest.rb b/Library/Formula/cpptest.rb new file mode 100644 index 000000000..effca1385 --- /dev/null +++ b/Library/Formula/cpptest.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Cpptest <Formula +  url 'http://downloads.sourceforge.net/project/cpptest/cpptest/cpptest-1.1.1/cpptest-1.1.1.tar.gz' +  homepage 'http://cpptest.sourceforge.net/' +  md5 'b50379402d69d40417add19ef88f9938' + +  def install +    system "./configure", "--disable-debug", "--disable-dependency-tracking", +                          "--prefix=#{prefix}" +    system "make install" +  end +end | 
