1577af0372
This reverts commit 90575346225fd0c16475ad74ee53b37b62715f0c. Closes Homebrew/homebrew#28026.
27 lines
747 B
Ruby
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
|