blob: 5de01f4ea6c8f5e445f2bfb62e1ee0da400a37f9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
require 'formula'
class Librsvg < Formula
url 'http://ftp.gnome.org/pub/GNOME/sources/librsvg/2.34/librsvg-2.34.1.tar.bz2'
homepage 'http://librsvg.sourceforge.net/'
sha256 '9f98ab27c4ae04a7c3a37277aeb581feb8035a8b1e1937b06e27423a176a0a73'
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
|