2011-07-23 13:50:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cpputest < Formula
|
|
|
|
homepage 'http://www.cpputest.org/'
|
2012-02-13 06:03:43 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/cpputest/cpputest/v2.3/CppUTest-v2.3.zip'
|
2011-07-23 13:50:13 +00:00
|
|
|
md5 '0546bf6d0f1513842cfa781255dcbdda'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
2012-02-13 06:03:43 +00:00
|
|
|
lib.install 'lib/libCppUTest.a'
|
|
|
|
include.install 'include/CppUTest'
|
2011-07-23 13:50:13 +00:00
|
|
|
end
|
|
|
|
end
|