homebrew-core/Formula/check.rb

17 lines
443 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
class Check < Formula
homepage 'http://check.sourceforge.net/'
2012-08-09 05:01:34 +00:00
url 'http://downloads.sourceforge.net/project/check/check/0.9.8/check-0.9.8.tar.gz'
sha1 'a75cc89411e24b5d39b7869f8233e19f210de555'
2012-08-09 05:01:34 +00:00
option :universal
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}"
system "make install"
end
end