2010-10-26 10:12:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Librsvg < Formula
|
2012-07-15 18:04:34 +00:00
|
|
|
homepage 'https://live.gnome.org/LibRsvg'
|
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.36/librsvg-2.36.1.tar.xz'
|
|
|
|
sha256 '786b95e1a091375c5ef2997a21c69ff24d7077afeff18197355f54d9dcbcd8c5'
|
2010-10-26 10:12:45 +00:00
|
|
|
|
2012-03-08 23:54:40 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2012-07-15 18:04:34 +00:00
|
|
|
depends_on 'xz' => :build
|
2010-10-26 10:12:45 +00:00
|
|
|
depends_on 'gtk+'
|
|
|
|
depends_on 'libcroco'
|
2012-06-07 01:35:12 +00:00
|
|
|
depends_on :x11
|
2010-10-26 10:12:45 +00:00
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
2012-07-15 18:04:34 +00:00
|
|
|
"--disable-Bsymbolic",
|
2010-10-26 10:12:45 +00:00
|
|
|
"--enable-tools=yes",
|
2012-07-15 18:04:34 +00:00
|
|
|
"--enable-pixbuf-loader=yes",
|
|
|
|
"--enable-introspection=no"
|
2010-10-26 10:12:45 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|