diff options
Diffstat (limited to 'Library/Formula')
| -rw-r--r-- | Library/Formula/gsettings-desktop-schemas.rb | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/Library/Formula/gsettings-desktop-schemas.rb b/Library/Formula/gsettings-desktop-schemas.rb new file mode 100644 index 000000000..cabb54ffc --- /dev/null +++ b/Library/Formula/gsettings-desktop-schemas.rb @@ -0,0 +1,17 @@ +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.4.tar.xz' + sha256 '0f5686683841a9d5a2d4e1dc60392d69cf2b2920614a5d504bb2cac5daea1df2' + + depends_on 'xz' => :build + depends_on 'gettext' + + def install + system "./configure", "--disable-dependency-tracking", + "--prefix=#{prefix}" + system "make install" + end + +end |
