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

class Cpputest < Formula
  homepage "http://www.cpputest.org/"
  url "https://github.com/cpputest/cpputest/archive/v3.6.tar.gz"
  sha1 "308a4200adfb86182251d435e09f42360d9ed8ea"

  def install
    system "./configure", "--prefix=#{prefix}"
    system "make install"
  end
end