homebrew-core/Formula/gconf.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

21 lines
596 B
Ruby

require 'formula'
class Gconf < Formula
homepage 'http://projects.gnome.org/gconf/'
url 'http://ftp.gnome.org/pub/GNOME/sources/GConf/3.2/GConf-3.2.5.tar.xz'
sha256 '4ddea9503a212ee126c5b46a0a958fd5484574c3cb6ef2baf38db02e819e58c6'
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'gettext'
depends_on 'd-bus'
depends_on 'glib'
depends_on 'dbus-glib'
depends_on 'orbit'
def install
system "./configure", "--disable-debug", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end