2012-08-16 18:52:53 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class GsettingsDesktopSchemas < Formula
|
|
|
|
homepage 'http://ftp.gnome.org/pub/GNOME/sources/gsettings-desktop-schemas/'
|
2013-11-12 17:07:32 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/gsettings-desktop-schemas/3.10/gsettings-desktop-schemas-3.10.1.tar.xz'
|
|
|
|
sha256 '452378c4960a145747ec69f8c6a874e5b7715454df3e2452d1ff1a0a82e76811'
|
2012-08-16 18:52:53 +00:00
|
|
|
|
|
|
|
depends_on 'xz' => :build
|
2012-09-27 00:31:47 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
|
|
|
depends_on 'intltool' => :build
|
|
|
|
depends_on 'glib' => :build # Yep, for glib-mkenums
|
2012-08-16 18:52:53 +00:00
|
|
|
depends_on 'gettext'
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
2013-11-12 07:33:38 +00:00
|
|
|
"--prefix=#{prefix}",
|
|
|
|
"--disable-schemas-compile"
|
2012-08-16 18:52:53 +00:00
|
|
|
system "make install"
|
|
|
|
end
|
|
|
|
|
|
|
|
end
|