homebrew-core/Formula/cpptest.rb
David Höppner e45c250502 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.
2010-08-30 16:43:32 +02:00

13 lines
404 B
Ruby

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