From a3db523fb0969269cc8de9311694e305ba60dd9b Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Sat, 24 May 2014 18:58:37 -0500 Subject: [PATCH] leptonica: remove check option A large number of tests fail simply because of optional dependencies that aren't present, and also some tests seem to require gnuplot which isn't a dependency otherwise. I don't think this is a particularly useful option. --- Formula/leptonica.rb | 3 --- 1 file changed, 3 deletions(-) diff --git a/Formula/leptonica.rb b/Formula/leptonica.rb index a98996d43f2df..145868091004f 100644 --- a/Formula/leptonica.rb +++ b/Formula/leptonica.rb @@ -5,8 +5,6 @@ class Leptonica < Formula url 'http://www.leptonica.org/source/leptonica-1.70.tar.gz' sha1 '476edd5cc3f627f5ad988fcca6b62721188fce13' - option 'check', 'Run the build checks' - depends_on 'libpng' => :recommended depends_on 'jpeg' => :recommended depends_on 'libtiff' => :optional @@ -29,7 +27,6 @@ def install end system "./configure", *args - system "make check" if build.include? 'check' system "make install" end