aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/cpputest.rb
blob: ec5ba89cfb8b63020fa73201ee5c33defae7dd03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
require 'formula'

class Cpputest < Formula
  homepage 'http://www.cpputest.org/'
  url 'http://downloads.sourceforge.net/project/cpputest/cpputest/v2.3/CppUTest-v2.3.zip'
  md5 '0546bf6d0f1513842cfa781255dcbdda'

  def install
    system "make"
    lib.install 'lib/libCppUTest.a'
    include.install 'include/CppUTest'
  end
end