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

class Check <Formula
  url 'http://downloads.sourceforge.net/project/check/check/0.9.8/check-0.9.8.tar.gz'
  homepage 'http://check.sourceforge.net/'
  md5 '5d75e9a6027cde79d2c339ef261e7470'

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