3eb225a620
Check is a unit testing framework for C. It features a simple interface for defining unit tests, putting little in the way of the developer.
12 lines
360 B
Ruby
12 lines
360 B
Ruby
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
|