aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/gtk-chtheme.rb
blob: 8a94c0d87819b1cad6f8f3db7571b42bc7728add (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
require 'formula'

class GtkChtheme < Formula
  homepage 'http://plasmasturm.org/code/gtk-chtheme/'
  url 'http://plasmasturm.org/code/gtk-chtheme/gtk-chtheme-0.3.1.tar.bz2'
  sha1 'dbea31f4092877e786fe040fae1374238fada94a'

  depends_on 'pkg-config' => :build
  depends_on 'gdk-pixbuf'
  depends_on 'gettext'
  depends_on 'glib'
  depends_on 'gtk+'
  depends_on 'pango'
  depends_on :x11

  def install
    # Unfortunately chtheme relies on some deprecated functionality
    # we need to disable errors for it to compile properly
    inreplace 'Makefile', '-DGTK_DISABLE_DEPRECATED', ''

    system "make", "PREFIX=#{prefix}", "install"
  end
end