c87b7b73a9
Closes Homebrew/homebrew#10719. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
22 lines
621 B
Ruby
22 lines
621 B
Ruby
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'
|
|
md5 'f688053bf26dd6c4f1cd0bf2ee33de2a'
|
|
|
|
depends_on 'pkg-config' => :build
|
|
depends_on 'gdk-pixbuf'
|
|
depends_on 'gettext'
|
|
depends_on 'glib'
|
|
depends_on 'gtk+'
|
|
depends_on 'pango'
|
|
|
|
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
|