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:
parent
80caee1fa5
commit
c8e680d39b
1 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue