homebrew-core/Formula/check.rb

17 lines
446 B
Ruby
Raw Normal View History

2014-06-17 06:48:00 +00:00
require "formula"
2011-03-10 05:11:03 +00:00
class Check < Formula
2014-06-17 06:48:00 +00:00
homepage "http://check.sourceforge.net/"
url "https://downloads.sourceforge.net/project/check/check/0.9.13/check-0.9.13.tar.gz"
sha1 "09f682d2239b1353818b74d06099a17460450240"
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