2010-02-08 05:40:25 +00:00
|
|
|
require 'formula'
|
|
|
|
|
2011-03-10 05:11:03 +00:00
|
|
|
class Libcroco < Formula
|
2010-02-08 05:40:25 +00:00
|
|
|
homepage 'http://www.freespiders.org/projects/libcroco/'
|
2012-07-14 20:50:36 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/libcroco-0.6.5.tar.xz'
|
|
|
|
sha256 '2c6959c3644e889264a61c35ddf17401c86943681d4fe3c1682ecd9acabda7e3'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2012-07-14 20:50:36 +00:00
|
|
|
depends_on 'xz' => :build
|
2010-02-08 05:40:25 +00:00
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'intltool'
|
|
|
|
|
|
|
|
def install
|
2012-08-15 15:00:13 +00:00
|
|
|
ENV.libxml2
|
2012-07-14 20:50:36 +00:00
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-Bsymbolic"
|
|
|
|
system 'make install'
|
2010-02-08 05:40:25 +00:00
|
|
|
end
|
|
|
|
end
|