2011-07-23 13:50:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cpputest < Formula
|
|
|
|
homepage 'http://www.cpputest.org/'
|
2013-09-23 18:28:39 +00:00
|
|
|
url 'https://github.com/cpputest/cpputest/archive/v3.5.tar.gz'
|
|
|
|
sha1 'a774f99f191db77abf48f4d6b64190bc445369c5'
|
2012-09-05 15:50:40 +00:00
|
|
|
|
2011-07-23 13:50:13 +00:00
|
|
|
def install
|
2013-06-09 17:05:50 +00:00
|
|
|
system "./configure", "--prefix=#{prefix}"
|
|
|
|
system "make install"
|
2011-07-23 13:50:13 +00:00
|
|
|
end
|
|
|
|
end
|