homebrew-core/Formula/cairo.rb

53 lines
1.5 KiB
Ruby
Raw Normal View History

2010-04-26 16:29:38 +00:00
require 'formula'
2011-03-10 05:11:03 +00:00
class Cairo < Formula
2010-04-26 16:29:38 +00:00
homepage 'http://cairographics.org/'
url 'http://cairographics.org/releases/cairo-1.12.2.tar.xz'
sha256 'b786bc4a70542bcb09f2d9d13e5e6a0c86408cbf6d1edde5f0de807eecf93f96'
2010-04-26 16:29:38 +00:00
keg_only :provided_pre_mountain_lion
2012-08-04 09:10:55 +00:00
2012-08-10 04:47:23 +00:00
option :universal
option 'without-x', 'Build without X11 support'
depends_on :libpng
depends_on 'pixman'
depends_on 'pkg-config' => :build
depends_on 'xz'=> :build
depends_on 'glib' unless build.include? 'without-x'
2012-08-10 04:47:23 +00:00
depends_on :x11 unless build.include? 'without-x'
2011-05-10 21:24:49 +00:00
# Fixes a build error with clang & universal, where a function was implicit.
def patches; DATA; end
2010-04-26 16:29:38 +00:00
def install
2012-08-10 04:47:23 +00:00
ENV.universal_binary if build.universal?
args = %W[
--disable-dependency-tracking
2012-08-10 04:47:23 +00:00
--prefix=#{prefix}
]
2012-08-10 04:47:23 +00:00
args << '--with-x' unless build.include? 'without-x'
args << '--enable-xcb=no' if MacOS.version == :leopard
system "./configure", *args
2010-04-26 16:29:38 +00:00
system "make install"
end
end
__END__
diff --git a/configure b/configure
index b75757d..1230da2 100755
--- a/configure
+++ b/configure
@@ -17939,7 +17939,7 @@ CAIRO_NONPKGCONFIG_LIBS="$LIBS"
MAYBE_WARN="-Wall -Wextra \
-Wold-style-definition -Wdeclaration-after-statement \
--Wmissing-declarations -Werror-implicit-function-declaration \
+-Wmissing-declarations -Wimplicit-function-declaration \
-Wnested-externs -Wpointer-arith -Wwrite-strings \
-Wsign-compare -Wstrict-prototypes -Wmissing-prototypes \
-Wpacked -Wswitch-enum -Wmissing-format-attribute \