2011-12-19 17:49:29 +00:00
|
|
|
require 'formula'
|
|
|
|
|
|
|
|
class Pygtk < Formula
|
|
|
|
homepage 'http://www.pygtk.org/'
|
2014-04-03 14:25:42 +00:00
|
|
|
url 'http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.24/pygtk-2.24.0.tar.bz2'
|
2012-09-03 18:33:56 +00:00
|
|
|
sha1 '344e6a32a5e8c7e0aaeb807e0636a163095231c2'
|
2011-12-19 17:49:29 +00:00
|
|
|
|
2013-02-10 05:53:29 +00:00
|
|
|
depends_on 'pkg-config' => :build
|
2012-07-07 04:45:40 +00:00
|
|
|
depends_on :x11
|
2011-12-19 17:49:29 +00:00
|
|
|
depends_on 'glib'
|
|
|
|
depends_on 'gtk+'
|
2013-01-27 12:28:28 +00:00
|
|
|
depends_on 'atk'
|
2011-12-19 17:49:29 +00:00
|
|
|
depends_on 'pygobject'
|
|
|
|
depends_on 'py2cairo'
|
2014-04-02 23:46:51 +00:00
|
|
|
depends_on 'libglade' => :optional
|
2011-12-19 17:49:29 +00:00
|
|
|
|
2012-08-12 17:59:20 +00:00
|
|
|
option :universal
|
2011-12-19 17:49:29 +00:00
|
|
|
|
|
|
|
def install
|
2014-01-04 13:13:56 +00:00
|
|
|
ENV.append 'CFLAGS', '-ObjC'
|
|
|
|
ENV.universal_binary if build.universal?
|
|
|
|
system "./configure", "--disable-dependency-tracking",
|
|
|
|
"--prefix=#{prefix}"
|
|
|
|
system "make install"
|
2012-12-05 08:59:17 +00:00
|
|
|
|
|
|
|
# Fixing the pkgconfig file to find codegen, because it was moved from
|
|
|
|
# pygtk to pygobject. But our pkgfiles point into the cellar and in the
|
|
|
|
# pygtk-cellar there is no pygobject.
|
|
|
|
inreplace lib/'pkgconfig/pygtk-2.0.pc', 'codegendir=${datadir}/pygobject/2.0/codegen', "codegendir=#{HOMEBREW_PREFIX}/share/pygobject/2.0/codegen"
|
2011-12-19 17:49:29 +00:00
|
|
|
end
|
|
|
|
end
|