homebrew-core/Formula/libcroco.rb
Jack Nagel d87063d32f Remove remaining explicit xz build-time deps
These dependencies are automatically detected from the URL, so declaring
them is redundant. If these formulae ever get a head or devel spec, then
explicit xz deps would need to be re-scoped appropriately. Thus we
should remove them.
2014-03-14 23:40:32 -05:00

19 lines
596 B
Ruby

require 'formula'
class Libcroco < Formula
homepage 'http://www.linuxfromscratch.org/blfs/view/svn/general/libcroco.html'
url 'http://ftp.gnome.org/pub/GNOME/sources/libcroco/0.6/libcroco-0.6.5.tar.xz'
sha256 '2c6959c3644e889264a61c35ddf17401c86943681d4fe3c1682ecd9acabda7e3'
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'glib'
def install
ENV.libxml2
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}",
"--disable-Bsymbolic"
system 'make install'
end
end