homebrew-core/Formula/librsvg.rb
Jack Nagel d87063d32f Remove remaining explicit xz build-time deps
These dependencies are automatically detected from the URL, so declaring
them is redundant. If these formulae ever get a head or devel spec, then
explicit xz deps would need to be re-scoped appropriately. Thus we
should remove them.
2014-03-14 23:40:32 -05:00

27 lines
747 B
Ruby

require 'formula'
class Librsvg < Formula
homepage 'https://live.gnome.org/LibRsvg'
url 'http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.36/librsvg-2.36.3.tar.xz'
sha256 '3d7d583271030e21acacc60cb6b81ee305713c9da5e98429cbd609312aea3632'
depends_on :x11
depends_on 'pkg-config' => :build
depends_on 'gtk+'
depends_on 'libcroco'
depends_on 'libgsf' => :optional
def install
args = ["--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-Bsymbolic",
"--enable-tools=yes",
"--enable-pixbuf-loader=yes",
"--enable-introspection=no"]
args << "--enable-svgz" if build.with? 'libgsf'
system "./configure", *args
system "make install"
end
end