blob: 0ef04b6e91faadbebf278a764ca4dfb4a1eac47e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
require 'formula'
class Pygtk < Formula
homepage 'http://www.pygtk.org/'
url 'http://ftp.gnome.org/pub/GNOME/sources/pygtk/2.24/pygtk-2.24.0.tar.bz2'
sha1 '344e6a32a5e8c7e0aaeb807e0636a163095231c2'
bottle do
sha1 "be4727a98966bb3c60d5f28b727dcab578361c1c" => :yosemite
sha1 "bf9ec63c71f74349cf23a6f37754cdb0f705eb33" => :mavericks
sha1 "c715bf7639a0c547441da94e5e9052fc5e756ef9" => :mountain_lion
end
depends_on 'pkg-config' => :build
depends_on :x11
depends_on 'glib'
depends_on 'gtk+'
depends_on 'atk'
depends_on 'pygobject'
depends_on 'py2cairo'
depends_on 'libglade' => :optional
option :universal
def install
ENV.append 'CFLAGS', '-ObjC'
ENV.universal_binary if build.universal?
system "./configure", "--disable-dependency-tracking",
"--prefix=#{prefix}"
system "make install"
# 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"
inreplace bin/"pygtk-codegen-2.0", "exec_prefix=${prefix}", "exec_prefix=#{Formula["pygobject"].opt_prefix}"
end
test do
(testpath/"codegen.def").write("(define-enum asdf)")
system "#{bin}/pygtk-codegen-2.0", "codegen.def"
end
end
|