aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAnthony Ramine2013-11-02 12:30:23 +0100
committerAdam Vandenberg2013-11-02 08:47:45 -0700
commite3a95951bef53028daa768ad95da970cf2a278f5 (patch)
treec065bbcfc881b9b2dfd054900d347f85657d413b /Library/Formula
parent27e6e00cfc31e9c046bf08f1e5975d44632a52c1 (diff)
downloadhomebrew-e3a95951bef53028daa768ad95da970cf2a278f5.tar.bz2
pyqt5 5.1.1
Closes #23891. Closes #23783. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/pyqt5.rb8
1 files changed, 5 insertions, 3 deletions
diff --git a/Library/Formula/pyqt5.rb b/Library/Formula/pyqt5.rb
index 647e5676a..19a9efafd 100644
--- a/Library/Formula/pyqt5.rb
+++ b/Library/Formula/pyqt5.rb
@@ -2,8 +2,8 @@ require 'formula'
class Pyqt5 < Formula
homepage 'http://www.riverbankcomputing.co.uk/software/pyqt/download5'
- url 'http://downloads.sf.net/project/pyqt/PyQt5/PyQt-5.0.1/PyQt-gpl-5.0.1.tar.gz'
- sha1 'ed94b4ae8a440678f9bbf52637add38e21faf4d2'
+ url 'http://downloads.sf.net/project/pyqt/PyQt5/PyQt-5.1.1/PyQt-gpl-5.1.1.tar.gz'
+ sha1 '90a3d6a805da7559ad83704866c1751d698f1873'
option 'enable-debug', "Build with debug symbols"
@@ -26,7 +26,9 @@ class Pyqt5 < Formula
# To avoid conflicst with PyQt (for Qt4):
"--sipdir=#{share}/sip#{python.if3then3}/Qt5/",
# sip.h could not be found automatically
- "--sip-incdir=#{Formula.factory('sip').opt_prefix}/include" ]
+ "--sip-incdir=#{Formula.factory('sip').opt_prefix}/include",
+ # Force deployment target to avoid libc++ issues
+ "QMAKE_MACOSX_DEPLOYMENT_TARGET=#{MacOS.version}" ]
args << '--debug' if build.include? 'enable-debug'
system python, "./configure.py", *args