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.
This commit is contained in:
parent
8dbabcbd25
commit
e45c250502
1 changed files with 13 additions and 0 deletions
13
Formula/cpptest.rb
Normal file
13
Formula/cpptest.rb
Normal file
|
@ -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
|
Loading…
Reference in a new issue