2010-10-26 10:12:45 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Librsvg < Formula
|
2010-10-26 10:12:45 +00:00
|
|
|
homepage 'http://librsvg.sourceforge.net/'
|
2012-03-08 23:54:40 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.34/librsvg-2.34.1.tar.bz2'
|
2011-10-04 21:07:30 +00:00
|
|
|
sha256 '9f98ab27c4ae04a7c3a37277aeb581feb8035a8b1e1937b06e27423a176a0a73'
|
2010-10-26 10:12:45 +00:00
|
|
|
|
2012-03-08 23:54:40 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-10-26 10:12:45 +00:00
|
|
|
depends_on 'gtk+'
|
|
|
|
depends_on 'libcroco'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--enable-tools=yes",
|
|
|
|
"--enable-pixbuf-loader=yes"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|