2011-07-23 13:50:13 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Cpputest < Formula
|
|
|
|
homepage 'http://www.cpputest.org/'
|
2013-06-09 17:05:50 +00:00
|
|
|
url 'https://github.com/cpputest/cpputest/archive/v3.4.tar.gz'
|
|
|
|
sha1 'ecd53f5b1a92a1f2291249ce69f544392f5a8462'
|
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
|