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
|
|
|
url 'ftp://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/libcroco-0.6.2.tar.bz2'
|
|
|
|
md5 '1429c597aa4b75fc610ab3a542c99209'
|
|
|
|
homepage 'http://www.freespiders.org/projects/libcroco/'
|
2010-04-07 05:58:35 +00:00
|
|
|
|
2010-09-19 17:21:57 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2010-02-08 05:40:25 +00:00
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'intltool'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--prefix=#{prefix}", "--disable-debug", "--disable-dependency-tracking"
|
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
end
|