homebrew-core/Formula/check.rb

19 lines
490 B
Ruby
Raw Normal View History

require 'formula'
2011-03-10 05:11:03 +00:00
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 options
[["--universal", "Build a universal binary."]]
end
def install
2011-04-21 16:42:27 +00:00
ENV.universal_binary if ARGV.build_universal?
2011-01-31 19:36:10 +00:00
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end