aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cpptest.rb
blob: effca13856fdaffc23b41e934adb6fcb54a9928e (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