aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorMike McQuaid2013-02-01 09:16:58 -0800
committerMike McQuaid2013-02-01 09:40:13 -0800
commitebcbe5cbcb13100b853a42033a855ead116b6cf2 (patch)
tree5e8f20693c042e59da0aba3a1090870a2c748632 /Library
parent9637eb97371ec0ca6fa8552e1a096174280f4fcf (diff)
downloadhomebrew-ebcbe5cbcb13100b853a42033a855ead116b6cf2.tar.bz2
Revert "qt5: 5.0.1"
This reverts commit db801bf1e659bbabe7629c5a1300cc1803e0b322. Closes #17491.
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/qt5.rb11
1 files changed, 4 insertions, 7 deletions
diff --git a/Library/Formula/qt5.rb b/Library/Formula/qt5.rb
index 8dd8148d4..5a5c3d719 100644
--- a/Library/Formula/qt5.rb
+++ b/Library/Formula/qt5.rb
@@ -2,17 +2,13 @@ require 'formula'
class Qt5 < Formula
homepage 'http://qt-project.org/'
- url 'http://releases.qt-project.org/qt5/5.0.1/single/qt-everywhere-opensource-src-5.0.1.tar.gz'
- sha1 'fda04435b1d4069dc189ab4d22ed7a36fe6fa3e9'
+ url 'http://releases.qt-project.org/qt5/5.0.0/single/qt-everywhere-opensource-src-5.0.0.tar.gz'
+ sha1 '42f4b11389fe1361352cdd04f258f0d6f175ebfd'
head 'git://gitorious.org/qt/qt5.git', :branch => 'master'
keg_only "Qt 5 conflicts Qt 4 (which is currently much more widely used)."
- fails_with :clang do
- build 425
- end
-
option :universal
option 'with-qtdbus', 'Enable QtDBus module'
option 'with-demos-examples', 'Enable Qt demos and examples'
@@ -28,7 +24,8 @@ class Qt5 < Formula
def install
args = ["-prefix", prefix,
"-system-libpng", "-system-zlib",
- "-confirm-license", "-opensource" ]
+ "-confirm-license", "-opensource",
+ "-fast" ]
args << "-L#{MacOS::X11.prefix}/lib" << "-I#{MacOS::X11.prefix}/include" if MacOS::X11.installed?