homebrew-core/Formula/gsettings-desktop-schemas.rb
Adam Vandenberg 64f53be5a1 gsettings-desktop-schemas: fix dependencies
Add explicit build-time dependencies on some tools so that superenv puts them in the path.
(And also so they'll be installed because they are needed!)

Fixes Homebrew/homebrew#15145.
2012-09-26 17:32:51 -07:00

20 lines
665 B
Ruby

require 'formula'
class GsettingsDesktopSchemas < Formula
homepage 'http://ftp.gnome.org/pub/GNOME/sources/gsettings-desktop-schemas/'
url 'http://ftp.gnome.org/pub/GNOME/sources/gsettings-desktop-schemas/3.5/gsettings-desktop-schemas-3.5.92.tar.xz'
sha256 '65f6e866019d41599563774bbb4b08125760d4f93abcdf7704a8ee2fa9421b2e'
depends_on 'xz' => :build
depends_on 'pkg-config' => :build
depends_on 'intltool' => :build
depends_on 'glib' => :build # Yep, for glib-mkenums
depends_on 'gettext'
def install
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
end
end