class Qt < Formula include Language::Python::Virtualenv desc "Cross-platform application and UI framework" homepage "https://www.qt.io/" url "https://download.qt.io/official_releases/qt/6.4/6.4.2/single/qt-everywhere-src-6.4.2.tar.xz" sha256 "689f53e6652da82fccf7c2ab58066787487339f28d1ec66a8765ad357f4976be" license all_of: [ "BSD-3-Clause", "GFDL-1.3-no-invariants-only", "GPL-2.0-only", { "GPL-3.0-only" => { with: "Qt-GPL-exception-1.0" } }, "LGPL-3.0-only", ] head "https://code.qt.io/qt/qt5.git", branch: "dev" # The first-party website doesn't make version information readily available, # so we check the `head` repository tags instead. livecheck do url :head regex(/^v?(\d+(?:\.\d+)+)$/i) end bottle do sha256 cellar: :any, arm64_ventura: "0f15fdc398cb8b54600483ff4a3ba10e6d50ce236239faa84904da4265dc8314" sha256 cellar: :any, arm64_monterey: "84ccfd0213cb47004d66a9a2f9d563091c370dd12180bca0bc571a64763a7d2a" sha256 cellar: :any, arm64_big_sur: "802ad97dd111eefee63093126f01bad87996c61eb978d09841e31362729b1684" sha256 cellar: :any, ventura: "1697ac5c6ff89bb24873bba10b3a8016e661e1b9d466d19f709a81745473e576" sha256 cellar: :any, monterey: "f0abc566520d6949106c8eaab13eb1d5c1cea1faa1d14a7557281359f340748f" sha256 cellar: :any, big_sur: "c0e19c004ab5aecad8e79a23cd5eb476f884a93831e8d511c0a7abfc0a1ed9b1" sha256 cellar: :any_skip_relocation, x86_64_linux: "1f5d80ad5fe8655d47d52b55f785c211c382b7600d2028796b9e0367625450a1" end depends_on "cmake" => [:build, :test] depends_on "ninja" => :build depends_on "node" => :build depends_on "pkg-config" => :build depends_on "python@3.11" => :build depends_on "six" => :build depends_on "vulkan-headers" => [:build, :test] depends_on xcode: :build depends_on "vulkan-loader" => :test depends_on "assimp" depends_on "brotli" depends_on "dbus" depends_on "double-conversion" depends_on "freetype" depends_on "glib" depends_on "harfbuzz" depends_on "hunspell" depends_on "icu4c" depends_on "jasper" depends_on "jpeg-turbo" depends_on "libb2" depends_on "libmng" depends_on "libpng" depends_on "libtiff" depends_on "md4c" depends_on "openssl@1.1" depends_on "pcre2" depends_on "sqlite" depends_on "webp" depends_on "zstd" uses_from_macos "bison" => :build uses_from_macos "flex" => :build uses_from_macos "gperf" => :build uses_from_macos "perl" => :build uses_from_macos "llvm" => :test # Our test relies on `clang++` in `PATH`. uses_from_macos "cups" uses_from_macos "krb5" uses_from_macos "libxslt" uses_from_macos "zlib" on_macos do depends_on "molten-vk" => [:build, :test] end on_linux do depends_on "alsa-lib" depends_on "at-spi2-core" # TODO: depends_on "bluez" depends_on "ffmpeg" depends_on "fontconfig" depends_on "gstreamer" # TODO: depends_on "gypsy" depends_on "libdrm" depends_on "libevent" depends_on "libice" depends_on "libsm" depends_on "libvpx" depends_on "libxcomposite" depends_on "libxkbcommon" depends_on "libxkbfile" depends_on "libxrandr" depends_on "libxtst" depends_on "little-cms2" depends_on "mesa" depends_on "minizip" depends_on "nss" depends_on "opus" depends_on "pulseaudio" depends_on "re2" depends_on "sdl2" depends_on "snappy" depends_on "systemd" depends_on "wayland" depends_on "xcb-util" depends_on "xcb-util-image" depends_on "xcb-util-keysyms" depends_on "xcb-util-renderutil" depends_on "xcb-util-wm" end fails_with gcc: "5" resource "html5lib" do url "https://files.pythonhosted.org/packages/ac/b6/b55c3f49042f1df3dcd422b7f224f939892ee94f22abcf503a9b7339eaf2/html5lib-1.1.tar.gz" sha256 "b2e5b40261e20f354d198eae92afc10d750afb487ed5e50f9c4eaf07c184146f" end resource "webencodings" do url "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz" sha256 "b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923" end # Remove symlink check causing build to bail out and fail. # https://gitlab.kitware.com/cmake/cmake/-/issues/23251 patch do url "https://raw.githubusercontent.com/Homebrew/formula-patches/c363f0edf9e90598d54bc3f4f1bacf95abbda282/qt/qt_internal_check_if_path_has_symlinks.patch" sha256 "1afd8bf3299949b2717265228ca953d8d9e4201ddb547f43ed84ac0d7da7a135" directory "qtbase" end def install python = "python3.11" # Install python dependencies for QtWebEngine venv_root = buildpath/"venv" venv = virtualenv_create(venv_root, python) venv.pip_install resources ENV.prepend_path "PYTHONPATH", venv_root/Language::Python.site_packages(python) # FIXME: GN requires clang in clangBasePath/bin inreplace "qtwebengine/src/3rdparty/chromium/build/toolchain/apple/toolchain.gni", 'rebase_path("$clang_base_path/bin/", root_build_dir)', '""' # FIXME: See https://bugreports.qt.io/browse/QTBUG-89559 # and https://codereview.qt-project.org/c/qt/qtbase/+/327393 # It is not friendly to Homebrew or macOS # because on macOS `/tmp` -> `/private/tmp` inreplace "qtwebengine/src/3rdparty/gn/src/base/files/file_util_posix.cc", "FilePath(full_path)", "FilePath(input)" realpath_files = %w[ qtwebengine/cmake/Gn.cmake qtwebengine/cmake/Functions.cmake qtwebengine/src/core/api/CMakeLists.txt qtwebengine/src/CMakeLists.txt qtwebengine/src/gn/CMakeLists.txt qtwebengine/src/process/CMakeLists.txt ] inreplace realpath_files, "REALPATH", "ABSOLUTE" config_args = %W[ -release -prefix #{HOMEBREW_PREFIX} -extprefix #{prefix} -archdatadir share/qt -datadir share/qt -examplesdir share/qt/examples -testsdir share/qt/tests -no-feature-relocatable -system-harfbuzz -system-sqlite -no-sql-mysql -no-sql-odbc -no-sql-psql ] cmake_args = std_cmake_args(install_prefix: HOMEBREW_PREFIX, find_framework: "FIRST") + %w[ -DINSTALL_MKSPECSDIR=share/qt/mkspecs -DFEATURE_pkg_config=ON -DQT_FEATURE_avx2=OFF -DQT_FEATURE_webengine_proprietary_codecs=ON -DQT_FEATURE_webengine_kerberos=ON ] if OS.mac? cmake_args << "-DCMAKE_OSX_DEPLOYMENT_TARGET=#{MacOS.version}.0" config_args << "-sysroot" << MacOS.sdk_path.to_s # NOTE: `chromium` should be built with the latest SDK because it uses # `___builtin_available` to ensure compatibility. config_args << "-skip" << "qtwebengine" if DevelopmentTools.clang_build_version <= 1200 else # Explicitly specify QT_BUILD_INTERNALS_RELOCATABLE_INSTALL_PREFIX so # that cmake does not think $HOMEBREW_PREFIX/lib is the install prefix. cmake_args << "-DQT_BUILD_INTERNALS_RELOCATABLE_INSTALL_PREFIX=#{prefix}" # The vendored copy of libjpeg is also used instead of the brewed copy, because the build # fails due to a missing symbol otherwise. # On macOS chromium will always use bundled copies and the QT_FEATURE_webengine_system_* # arguments are ignored. cmake_args += %w[ -DQT_FEATURE_webengine_system_alsa=ON -DQT_FEATURE_webengine_system_ffmpeg=ON -DQT_FEATURE_webengine_system_icu=ON -DQT_FEATURE_webengine_system_libevent=ON -DQT_FEATURE_webengine_system_libpng=ON -DQT_FEATURE_webengine_system_libxml=ON -DQT_FEATURE_webengine_system_libwebp=ON -DQT_FEATURE_webengine_system_minizip=ON -DQT_FEATURE_webengine_system_opus=ON -DQT_FEATURE_webengine_system_poppler=ON -DQT_FEATURE_webengine_system_pulseaudio=ON -DQT_FEATURE_webengine_system_zlib=ON ] end system "./configure", *config_args, "--", *cmake_args system "cmake", "--build", "." system "cmake", "--install", "." rm bin/"qt-cmake-private-install.cmake" inreplace lib/"cmake/Qt6/qt.toolchain.cmake", "#{Superenv.shims_path}/", "" # The pkg-config files installed suggest that headers can be found in the # `include` directory. Make this so by creating symlinks from `include` to # the Frameworks' Headers folders. # Tracking issues: # https://bugreports.qt.io/browse/QTBUG-86080 # https://gitlab.kitware.com/cmake/cmake/-/merge_requests/6363 lib.glob("*.framework") do |f| # Some config scripts will only find Qt in a "Frameworks" folder frameworks.install_symlink f include.install_symlink f/"Headers" => f.stem end return unless OS.mac? bin.glob("*.app") do |app| libexec.install app bin.write_exec_script libexec/app.basename/"Contents/MacOS"/app.stem end end test do (testpath/"CMakeLists.txt").write <<~EOS cmake_minimum_required(VERSION #{Formula["cmake"].version}) project(test VERSION 1.0.0 LANGUAGES CXX) set(CMAKE_CXX_STANDARD 17) set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CMAKE_AUTOMOC ON) set(CMAKE_AUTORCC ON) set(CMAKE_AUTOUIC ON) find_package(Qt6 COMPONENTS Core Gui Widgets Sql Concurrent 3DCore Svg Quick3D Network NetworkAuth REQUIRED) add_executable(test main.cpp ) target_link_libraries(test PRIVATE Qt6::Core Qt6::Widgets Qt6::Sql Qt6::Concurrent Qt6::3DCore Qt6::Svg Qt6::Quick3D Qt6::Network Qt6::NetworkAuth Qt6::Gui ) EOS (testpath/"test.pro").write <<~EOS QT += core svg 3dcore network networkauth quick3d \ sql gui widgets TARGET = test CONFIG += console CONFIG -= app_bundle TEMPLATE = app SOURCES += main.cpp INCLUDEPATH += #{Formula["vulkan-headers"].opt_include} EOS (testpath/"main.cpp").write <<~EOS #undef QT_NO_DEBUG #include #include #include #include #include #include #include #include #include #include int main(int argc, char *argv[]) { QCoreApplication app(argc, argv); QSvgGenerator generator; auto *handler = new QOAuthHttpServerReplyHandler(); delete handler; handler = nullptr; auto *root = new Qt3DCore::QEntity(); delete root; root = nullptr; Q_ASSERT(QSqlDatabase::isDriverAvailable("QSQLITE")); const auto &list = QImageReader::supportedImageFormats(); QVulkanInstance inst; // See https://github.com/actions/runner-images/issues/1779 // if (!inst.create()) // qFatal("Failed to create Vulkan instance: %d", inst.errorCode()); for(const char* fmt:{"bmp", "cur", "gif", #ifdef __APPLE__ "heic", "heif", #endif "icns", "ico", "jp2", "jpeg", "jpg", "pbm", "pgm", "png", "ppm", "svg", "svgz", "tga", "tif", "tiff", "wbmp", "webp", "xbm", "xpm"}) { Q_ASSERT(list.contains(fmt)); } return 0; } EOS ENV["QT_VULKAN_LIB"] = Formula["vulkan-loader"].opt_lib/(shared_library "libvulkan") ENV["QT_QPA_PLATFORM"] = "minimal" if OS.linux? && ENV["HOMEBREW_GITHUB_ACTIONS"] system "cmake", testpath system "make" system "./test" ENV.delete "CPATH" unless MacOS.version <= :mojave system bin/"qmake", testpath/"test.pro" system "make" system "./test" end end