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>
This commit is contained in:
Jack Nagel 2012-07-07 12:03:33 -05:00
parent 80caee1fa5
commit c8e680d39b

View file

@ -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