aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
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?