blob: 234b33249e17c3a3d53077568944a02f5f1dd89b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
require 'formula'
class Cpptest < Formula
url 'http://downloads.sourceforge.net/project/cpptest/cpptest/cpptest-1.1.1/cpptest-1.1.1.tar.gz'
homepage 'http://cpptest.sourceforge.net/'
md5 'b50379402d69d40417add19ef88f9938'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end
|