homebrew-core/Formula/qt.rb

90 lines
2.5 KiB
Ruby
Raw Normal View History

require 'formula'
2009-12-23 14:27:37 +00:00
require 'hardware'
2011-03-10 05:11:03 +00:00
class Qt < Formula
2011-05-04 13:05:31 +00:00
url 'http://get.qt.nokia.com/qt/source/qt-everywhere-opensource-src-4.7.3.tar.gz'
md5 '49b96eefb1224cc529af6fe5608654fe'
homepage 'http://qt.nokia.com/'
def options
[
2009-12-23 14:27:37 +00:00
['--with-qtdbus', "Enable QtDBus module."],
['--with-qt3support', "Enable deprecated Qt3Support module."],
['--with-demos-examples', "Enable Qt demos and examples."],
['--with-debug-and-release', "Compile Qt in debug and release mode."],
['--universal', "Build both x86_64 and x86 architectures."],
]
end
2009-12-23 14:27:37 +00:00
depends_on "d-bus" if ARGV.include? '--with-qtdbus'
2011-04-08 18:16:37 +00:00
depends_on 'sqlite' if MacOS.leopard?
def install
2011-04-05 22:33:16 +00:00
ENV.x11
ENV.append "CXXFLAGS", "-fvisibility=hidden"
args = ["-prefix", prefix,
"-system-libpng", "-system-zlib",
"-L/usr/X11/lib", "-I/usr/X11/include",
"-confirm-license", "-opensource",
"-cocoa", "-fast" ]
# See: https://github.com/mxcl/homebrew/issues/issue/744
2011-04-08 18:16:37 +00:00
args << "-system-sqlite" if MacOS.leopard?
args << "-plugin-sql-mysql" if (HOMEBREW_CELLAR+"mysql").directory?
2009-12-23 14:27:37 +00:00
if ARGV.include? '--with-qtdbus'
args << "-I#{Formula.factory('d-bus').lib}/dbus-1.0/include"
args << "-I#{Formula.factory('d-bus').include}/dbus-1.0"
end
if ARGV.include? '--with-qt3support'
args << "-qt3support"
else
args << "-no-qt3support"
end
if ARGV.include? '--with-debug-and-release'
args << "-debug-and-release"
else
args << "-release"
end
unless ARGV.include? '--with-demos-examples'
args << "-nomake" << "demos" << "-nomake" << "examples"
end
2011-04-21 16:42:27 +00:00
if MacOS.prefer_64_bit? or ARGV.build_universal?
args << '-arch' << 'x86_64'
end
2011-04-21 16:42:27 +00:00
if !MacOS.prefer_64_bit? or ARGV.build_universal?
args << '-arch' << 'x86'
2009-10-12 18:51:17 +00:00
end
system "./configure", *args
system "make"
ENV.j1
system "make install"
2009-12-23 14:27:37 +00:00
# stop crazy disk usage
(prefix+'doc/html').rmtree
(prefix+'doc/src').rmtree
2009-12-23 14:27:37 +00:00
# what are these anyway?
(bin+'pixeltool.app').rmtree
(bin+'qhelpconverter.app').rmtree
2009-12-23 14:27:37 +00:00
# remove porting file for non-humans
(prefix+'q3porting.xml').unlink
# Some config scripts will only find Qt in a "Frameworks" folder
2010-02-16 20:53:29 +00:00
# VirtualBox is an example of where this is needed
# See: https://github.com/mxcl/homebrew/issues/issue/745
2010-02-16 20:53:29 +00:00
cd prefix do
ln_s lib, "Frameworks"
end
end
def caveats
2009-12-23 14:27:37 +00:00
"We agreed to the Qt opensource license for you.\nIf this is unacceptable you should uninstall."
end
2009-09-12 16:06:43 +00:00
end