2014-06-17 06:48:00 +00:00
|
|
|
require "formula"
|
2009-12-25 09:07:08 +00:00
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Check < Formula
|
2014-06-17 06:48:00 +00:00
|
|
|
homepage "http://check.sourceforge.net/"
|
2014-08-17 03:15:20 +00:00
|
|
|
url "https://downloads.sourceforge.net/project/check/check/0.9.14/check-0.9.14.tar.gz"
|
|
|
|
sha1 "4b79e2d485d014ddb438e322b64235347d57b0ff"
|
2009-12-25 09:07:08 +00:00
|
|
|
|
2014-08-08 10:05:04 +00:00
|
|
|
bottle do
|
|
|
|
cellar :any
|
2014-08-17 03:20:19 +00:00
|
|
|
sha1 "5f7d4c82f1c2bdb365718e97299efd47ec9c7272" => :mavericks
|
|
|
|
sha1 "2390f4c06a316a18cd4a9164fcd510c1ffb9a276" => :mountain_lion
|
|
|
|
sha1 "99d8dfd79c4498071ac91dcc782b5b27f2182614" => :lion
|
2014-08-08 10:05:04 +00:00
|
|
|
end
|
|
|
|
|
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
|