diff options
| author | Adam Vandenberg | 2010-07-13 14:07:54 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2010-07-13 14:07:54 -0700 |
| commit | 49d167def59c4c076790c0271e4132737ad95c8c (patch) | |
| tree | b3047c199bf612f7ef32e5888e97dc02fb917e15 /Library/Formula/pyqt.rb | |
| parent | 6f315b36b3491ec19767838b654289cb48c962a0 (diff) | |
| download | homebrew-49d167def59c4c076790c0271e4132737ad95c8c.tar.bz2 | |
Bump versions of pyqt and sip
Diffstat (limited to 'Library/Formula/pyqt.rb')
| -rw-r--r-- | Library/Formula/pyqt.rb | 22 |
1 files changed, 8 insertions, 14 deletions
diff --git a/Library/Formula/pyqt.rb b/Library/Formula/pyqt.rb index b553e3b52..d5da764e6 100644 --- a/Library/Formula/pyqt.rb +++ b/Library/Formula/pyqt.rb @@ -1,12 +1,12 @@ require 'formula' -# NOTE this should be provided by pip eventually -# currently easy_install doesn't seem to support it +# Note: this project doesn't save old releases, so it breaks often as +# downloads disappear. class Pyqt <Formula - url 'http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-mac-gpl-4.7.3.tar.gz' + url 'http://www.riverbankcomputing.co.uk/static/Downloads/PyQt4/PyQt-mac-gpl-4.7.4.tar.gz' homepage 'http://www.riverbankcomputing.co.uk/software/pyqt' - md5 '55ecd293b4a0e337b9c7e10479c53d96' + md5 '18af44b8a51dc896200c8b299bee7937' depends_on 'sip' depends_on 'qt' @@ -21,16 +21,10 @@ class Pyqt <Formula system "make" system "make install" end - - def caveats; <<-EOS -This formula won't function until you add the following to your PYTHONPATH -environment variable: - -#{HOMEBREW_PREFIX}/lib/python -Installing with easy_install would be ideal; then the libraries are installed -to /Library/Python which is in the default OS X Python library path. However -easy_install does not support this formula. - EOS + def caveats; <<-EOS +This formula won't function until you amend your PYTHONPATH like so: + export PYTHON_PATH=#{HOMEBREW_PREFIX}/lib/python:$PYTHON_PATH +EOS end end |
