aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/pyqt.rb
diff options
context:
space:
mode:
authorCharlie Sharpsteen2010-10-10 10:20:24 -0700
committerAdam Vandenberg2010-10-12 07:09:46 -0700
commit3d7c11ac0e35b3584d1c5b10ee7d44b51223584e (patch)
tree9dbc07ac693b8289c7c1b8e48f5732da769f5c0d /Library/Formula/pyqt.rb
parent0d5971c386041afba377635081dbd961784e6c86 (diff)
downloadhomebrew-3d7c11ac0e35b3584d1c5b10ee7d44b51223584e.tar.bz2
Bump PyQt version number to 4.7.7
Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula/pyqt.rb')
-rw-r--r--Library/Formula/pyqt.rb7
1 files changed, 4 insertions, 3 deletions
diff --git a/Library/Formula/pyqt.rb b/Library/Formula/pyqt.rb
index 9c7322204..0ddc6d2f8 100644
--- a/Library/Formula/pyqt.rb
+++ b/Library/Formula/pyqt.rb
@@ -4,9 +4,9 @@ require 'formula'
# downloads disappear.
class Pyqt <Formula
- url 'http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-mac-gpl-4.7.6.tar.gz'
+ url 'http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-mac-gpl-4.7.7.tar.gz'
homepage 'http://www.riverbankcomputing.co.uk/software/pyqt'
- md5 'abe74162df98e771d3770af77a1561d4'
+ md5 '18213126857b7c6e6da6f7a1720d4870'
depends_on 'sip'
depends_on 'qt'
@@ -14,7 +14,8 @@ class Pyqt <Formula
def install
ENV.prepend 'PYTHONPATH', "#{HOMEBREW_PREFIX}/lib/python", ':'
- system "python", "./configure.py", "--confirm-license",
+ # SIP gets built against system python, so PyQt should as well.
+ system "/usr/bin/python", "./configure.py", "--confirm-license",
"--bindir=#{bin}",
"--destdir=#{lib}/python",
"--sipdir=#{share}/sip"