2010-08-30 14:43:32 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Cpptest < Formula
|
2010-08-30 14:43:32 +00:00
|
|
|
homepage 'http://cpptest.sourceforge.net/'
|
2012-11-04 17:08:07 +00:00
|
|
|
url 'http://downloads.sourceforge.net/project/cpptest/cpptest/cpptest-1.1.2/cpptest-1.1.2.tar.gz'
|
|
|
|
sha1 'c8e69ca98f9b39016c94f1f78659f412ee825049'
|
2010-08-30 14:43:32 +00:00
|
|
|
|
|
|
|
def install
|
2012-07-29 16:23:57 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2010-08-30 14:43:32 +00:00
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|