64afeec6d4
Signed-off-by: Jack Nagel <jacknagel@gmail.com>
30 lines
714 B
Ruby
30 lines
714 B
Ruby
require 'formula'
|
|
|
|
class Cairo < Formula
|
|
homepage 'http://cairographics.org/'
|
|
url 'http://www.cairographics.org/releases/cairo-1.10.2.tar.gz'
|
|
sha1 'ccce5ae03f99c505db97c286a0c9a90a926d3c6e'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'pixman'
|
|
|
|
keg_only :provided_by_osx,
|
|
"The Cairo provided by Leopard is too old for newer software to link against."
|
|
|
|
fails_with :llvm do
|
|
build 2336
|
|
cause "Throws an 'lto could not merge' error during build."
|
|
end
|
|
|
|
def install
|
|
args = %W[
|
|
--disable-dependency-tracking
|
|
--prefix=#{prefix}
|
|
--with-x
|
|
]
|
|
args << '--enable-xcb' unless MacOS.leopard?
|
|
|
|
system "./configure", *args
|
|
system "make install"
|
|
end
|
|
end
|