2009-12-25 09:07:08 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Check < Formula
|
2009-12-25 09:07:08 +00:00
|
|
|
homepage 'http://check.sourceforge.net/'
|
2014-02-27 14:19:55 +00:00
|
|
|
url 'https://downloads.sourceforge.net/project/check/check/0.9.12/check-0.9.12.tar.gz'
|
2014-02-15 17:23:50 +00:00
|
|
|
sha1 'eaa4c1c3273901b63c7bf054d402b554ad8dd9c9'
|
2009-12-25 09:07:08 +00:00
|
|
|
|
2012-08-09 05:01:34 +00:00
|
|
|
option :universal
|
2011-03-04 22:25:23 +00:00
|
|
|
|
2009-12-25 09:07:08 +00:00
|
|
|
def install
|
2012-08-09 05:01:34 +00:00
|
|
|
ENV.universal_binary if build.universal?
|
2011-01-31 19:36:10 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
2009-12-25 09:07:08 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|