diff options
| author | Jake Goulding | 2011-07-23 09:50:13 -0400 | 
|---|---|---|
| committer | Jack Nagel | 2011-09-16 19:16:04 -0500 | 
| commit | 92cb3f96bf78123d23146955dd8c59e381a44f06 (patch) | |
| tree | 8be5e898da812ee201c7b32e78391054076dd465 /Library/Formula/cpputest.rb | |
| parent | f6d7c3d34f3e97cd777a794b41f9621c7b1dde35 (diff) | |
| download | homebrew-92cb3f96bf78123d23146955dd8c59e381a44f06.tar.bz2 | |
New formula: CppUTest 2.3
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula/cpputest.rb')
| -rw-r--r-- | Library/Formula/cpputest.rb | 13 | 
1 files changed, 13 insertions, 0 deletions
| diff --git a/Library/Formula/cpputest.rb b/Library/Formula/cpputest.rb new file mode 100644 index 000000000..200a49fe9 --- /dev/null +++ b/Library/Formula/cpputest.rb @@ -0,0 +1,13 @@ +require 'formula' + +class Cpputest < Formula +  url 'http://downloads.sourceforge.net/project/cpputest/cpputest/v2.3/CppUTest-v2.3.zip' +  homepage 'http://www.cpputest.org/' +  md5 '0546bf6d0f1513842cfa781255dcbdda' + +  def install +    system "make" +    lib.install ['lib/libCppUTest.a'] +    include.install ['include/CppUTest'] +  end +end | 
