homebrew-core/Formula/check.rb
Brett Koonce db743bc137 check 0.9.11
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
2013-11-19 13:59:08 -06:00

16 lines
445 B
Ruby

require 'formula'
class Check < Formula
homepage 'http://check.sourceforge.net/'
url 'http://downloads.sourceforge.net/project/check/check/0.9.11/check-0.9.11.tar.gz'
sha1 '84b5af72dd49df4ac837645d117ce9126535d549'
option :universal
def install
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end