#!/usr/bin/env bash set -e if [ "$#" -ne 1 ]; then echo "Syntax: $0 <output directory>" exit 1 fi INSTALLDIR="$1" NPROCS="$(getconf _NPROCESSORS_ONLN)" SDL=SDL2-2.30.0 QT=6.6.1 LIBBACKTRACE=ad106d5fdd5d960bd33fae1c48a351af567fd075 mkdir -p deps-build cd deps-build cat > SHASUMS <<EOF 36e2e41557e0fa4a1519315c0f5958a87ccb27e25c51776beb6f1239526447b0 $SDL.tar.gz fd6f417fe9e3a071cf1424a5152d926a34c4a3c5070745470be6cf12a404ed79 $LIBBACKTRACE.zip 450c5b4677b2fe40ed07954d7f0f40690068e80a94c9df86c2c905ccd59d02f7 qtbase-everywhere-src-$QT.tar.xz ac4ed08950072e375be662cfa64fdb447dd6e935cf29c56a4128d1500492188f qtimageformats-everywhere-src-$QT.tar.xz 248deb56d26a463cf3162f530358ccf90cfb654bbf518bb35ddf81b205e09228 qtsvg-everywhere-src-$QT.tar.xz 4939105a7345ab4e19e7caee8654a836e65bd41910359623e0f233f3aff0914a qttools-everywhere-src-$QT.tar.xz 668702e822ad7150b27e7caa2158595fd9b3b77ffbc8262e6509872a3920ee88 qttranslations-everywhere-src-$QT.tar.xz 66cc2d632dc07fc6cc4e35247f48b7c1753276ccbf86e86d7b24d799725568b1 qtwayland-everywhere-src-$QT.tar.xz EOF curl -L \ -O "https://libsdl.org/release/$SDL.tar.gz" \ -O "https://github.com/ianlancetaylor/libbacktrace/archive/$LIBBACKTRACE.zip" \ -O "https://download.qt.io/official_releases/qt/${QT%.*}/$QT/submodules/qtbase-everywhere-src-$QT.tar.xz" \ -O "https://download.qt.io/official_releases/qt/${QT%.*}/$QT/submodules/qtimageformats-everywhere-src-$QT.tar.xz" \ -O "https://download.qt.io/official_releases/qt/${QT%.*}/$QT/submodules/qtsvg-everywhere-src-$QT.tar.xz" \ -O "https://download.qt.io/official_releases/qt/${QT%.*}/$QT/submodules/qttools-everywhere-src-$QT.tar.xz" \ -O "https://download.qt.io/official_releases/qt/${QT%.*}/$QT/submodules/qttranslations-everywhere-src-$QT.tar.xz" \ -O "https://download.qt.io/official_releases/qt/${QT%.*}/$QT/submodules/qtwayland-everywhere-src-$QT.tar.xz" shasum -a 256 --check SHASUMS echo "Building SDL..." tar xf "$SDL.tar.gz" cd "$SDL" ./configure --prefix "$INSTALLDIR" --disable-dbus --without-x --disable-video-opengl --disable-video-opengles --disable-video-vulkan --disable-wayland-shared --disable-ime --disable-oss --disable-alsa --disable-jack --disable-esd --disable-pipewire --disable-pulseaudio --disable-arts --disable-nas --disable-sndio --disable-fusionsound --disable-diskaudio make "-j$NPROCS" make install cd .. echo "Building libbacktrace..." unzip "$LIBBACKTRACE.zip" cd "libbacktrace-$LIBBACKTRACE" ./configure --prefix="$INSTALLDIR" make make install cd .. # Couple notes: # -fontconfig is needed otherwise Qt Widgets render only boxes. # -qt-doubleconversion avoids a dependency on libdouble-conversion. # ICU avoids pulling in a bunch of large libraries, and hopefully we can get away without it. # OpenGL is needed to render window decorations in Wayland, apparently. echo "Building Qt Base..." tar xf "qtbase-everywhere-src-$QT.tar.xz" cd "qtbase-everywhere-src-$QT" mkdir build cd build ../configure -prefix "$INSTALLDIR" -release -no-dbus -gui -widgets -fontconfig -qt-doubleconversion -ssl -openssl-runtime -opengl desktop -qpa xcb,wayland -xkbcommon -- -DFEATURE_dbus=OFF -DFEATURE_icu=OFF -DFEATURE_printsupport=OFF -DFEATURE_sql=OFF cmake --build . --parallel ninja install cd ../../ echo "Building Qt SVG..." tar xf "qtsvg-everywhere-src-$QT.tar.xz" cd "qtsvg-everywhere-src-$QT" mkdir build cd build "$INSTALLDIR/bin/qt-configure-module" .. cmake --build . --parallel ninja install cd ../../ echo "Building Qt Image Formats..." tar xf "qtimageformats-everywhere-src-$QT.tar.xz" cd "qtimageformats-everywhere-src-$QT" mkdir build cd build "$INSTALLDIR/bin/qt-configure-module" .. cmake --build . --parallel ninja install cd ../../ echo "Building Qt Wayland..." tar xf "qtwayland-everywhere-src-$QT.tar.xz" cd "qtwayland-everywhere-src-$QT" mkdir build cd build "$INSTALLDIR/bin/qt-configure-module" .. cmake --build . --parallel ninja install cd ../../ echo "Installing Qt Tools..." tar xf "qttools-everywhere-src-$QT.tar.xz" cd "qttools-everywhere-src-$QT" # From Mac build-dependencies.sh: # Linguist relies on a library in the Designer target, which takes 5-7 minutes to build on the CI # Avoid it by not building Linguist, since we only need the tools that come with it patch -u src/linguist/CMakeLists.txt <<EOF --- src/linguist/CMakeLists.txt +++ src/linguist/CMakeLists.txt @@ -14,7 +14,7 @@ add_subdirectory(lrelease-pro) add_subdirectory(lupdate) add_subdirectory(lupdate-pro) -if(QT_FEATURE_process AND QT_FEATURE_pushbutton AND QT_FEATURE_toolbutton AND TARGET Qt::Widgets AND NOT no-png) +if(QT_FEATURE_process AND QT_FEATURE_pushbutton AND QT_FEATURE_toolbutton AND TARGET Qt::Widgets AND TARGET Qt::PrintSupport AND NOT no-png) add_subdirectory(linguist) endif() EOF # Also force disable clang scanning, it gets very confused. patch -u configure.cmake <<EOF --- configure.cmake +++ configure.cmake @@ -14,12 +14,12 @@ # Presumably because 6.0 ClangConfig.cmake files are not good enough? # In any case explicitly request a minimum version of 8.x for now, otherwise # building with CMake will fail at compilation time. -qt_find_package(WrapLibClang 8 PROVIDED_TARGETS WrapLibClang::WrapLibClang) +#qt_find_package(WrapLibClang 8 PROVIDED_TARGETS WrapLibClang::WrapLibClang) # special case end -if(TARGET WrapLibClang::WrapLibClang) - set(TEST_libclang "ON" CACHE BOOL "Required libclang version found." FORCE) -endif() +#if(TARGET WrapLibClang::WrapLibClang) +# set(TEST_libclang "ON" CACHE BOOL "Required libclang version found." FORCE) +#endif() EOF mkdir build cd build "$INSTALLDIR/bin/qt-configure-module" .. -- -DFEATURE_assistant=OFF -DFEATURE_clang=OFF -DFEATURE_designer=OFF -DFEATURE_kmap2qmap=OFF -DFEATURE_pixeltool=OFF -DFEATURE_pkg_config=OFF -DFEATURE_qev=OFF -DFEATURE_qtattributionsscanner=OFF -DFEATURE_qtdiag=OFF -DFEATURE_qtplugininfo=OFF cmake --build . --parallel ninja install cd ../../ echo "Installing Qt Translations..." tar xf "qttranslations-everywhere-src-$QT.tar.xz" cd "qttranslations-everywhere-src-$QT" mkdir build cd build "$INSTALLDIR/bin/qt-configure-module" .. cmake --build . --parallel ninja install cd ../../ echo "Cleaning up..." cd .. rm -r deps-build