aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorJack Nagel2012-07-07 12:03:33 -0500
committerJack Nagel2012-07-07 12:03:33 -0500
commit18631a8cb7616bac193389e569d2db34e13c5aa2 (patch)
tree2694466a4775ae25f06699f9e437d868f2806d8b /Library/Formula
parent26c0d8f475daef5f1ba60625e7fbdad3f002cc78 (diff)
downloadhomebrew-18631a8cb7616bac193389e569d2db34e13c5aa2.tar.bz2
gobject-introspection: disable tests
The tests require (at least) cairo, so disable them to avoid insane dependencies. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/gobject-introspection.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Formula/gobject-introspection.rb b/Library/Formula/gobject-introspection.rb
index 3d91b11cd..49b4df231 100644
--- a/Library/Formula/gobject-introspection.rb
+++ b/Library/Formula/gobject-introspection.rb
@@ -16,7 +16,10 @@ class GobjectIntrospection < Formula
def install
ENV.universal_binary if ARGV.build_universal?
- system "./configure", "--disable-dependency-tracking", "--prefix=#{prefix}"
+ system "./configure", "--disable-dependency-tracking",
+ "--prefix=#{prefix}",
+ # Tests require (at least) cairo, disable them.
+ "--disable-tests"
system "make install"
end
end