mirror of
https://github.com/Retropex/dolphin.git
synced 2025-05-12 19:30:44 +02:00
83 lines
3.5 KiB
Bash
Executable File
83 lines
3.5 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
export MACOSX_DEPLOYMENT_TARGET=10.15
|
|
INSTALLDIR="$HOME/deps"
|
|
NPROCS="$(getconf _NPROCESSORS_ONLN)"
|
|
SDL=SDL2-2.26.0
|
|
QT=6.2.4
|
|
|
|
mkdir deps-build
|
|
cd deps-build
|
|
|
|
export PKG_CONFIG_PATH="$INSTALLDIR/lib/pkgconfig:$PKG_CONFIG_PATH"
|
|
export LDFLAGS="-L$INSTALLDIR/lib -dead_strip $LDFLAGS"
|
|
export CFLAGS="-I$INSTALLDIR/include -Os $CFLAGS"
|
|
export CXXFLAGS="-I$INSTALLDIR/include -Os $CXXFLAGS"
|
|
|
|
cat > SHASUMS <<EOF
|
|
8000d7169febce93c84b6bdf376631f8179132fd69f7015d4dadb8b9c2bdb295 $SDL.tar.gz
|
|
d9924d6fd4fa5f8e24458c87f73ef3dfc1e7c9b877a5407c040d89e6736e2634 qtbase-everywhere-src-$QT.tar.xz
|
|
17f40689c4a1706a1b7db22fa92f6ab79f7b698a89e100cab4d10e19335f8267 qttools-everywhere-src-$QT.tar.xz
|
|
bd1aac74a892c60b2f147b6d53bb5b55ab7a6409e63097d38198933f8024fa51 qttranslations-everywhere-src-$QT.tar.xz
|
|
EOF
|
|
|
|
curl -L \
|
|
-O "https://libsdl.org/release/$SDL.tar.gz" \
|
|
-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/qttools-everywhere-src-$QT.tar.xz" \
|
|
-O "https://download.qt.io/official_releases/qt/${QT%.*}/$QT/submodules/qttranslations-everywhere-src-$QT.tar.xz" \
|
|
|
|
shasum -a 256 --check SHASUMS
|
|
|
|
echo "Installing SDL..."
|
|
tar xf "$SDL.tar.gz"
|
|
cd "$SDL"
|
|
CC="clang -arch x86_64 -arch arm64" ./configure --prefix "$INSTALLDIR" --without-x
|
|
make "-j$NPROCS"
|
|
make install
|
|
cd ..
|
|
|
|
echo "Installing Qt Base..."
|
|
tar xf "qtbase-everywhere-src-$QT.tar.xz"
|
|
cd "qtbase-everywhere-src-$QT"
|
|
cmake -B build -DCMAKE_OSX_ARCHITECTURES="x86_64;arm64" -DCMAKE_PREFIX_PATH="$INSTALLDIR" -DCMAKE_INSTALL_PREFIX="$INSTALLDIR" -DCMAKE_BUILD_TYPE=Release -DFEATURE_optimize_size=ON -DFEATURE_dbus=OFF -DFEATURE_framework=OFF -DFEATURE_icu=OFF -DFEATURE_opengl=OFF -DFEATURE_printsupport=OFF -DFEATURE_sql=OFF -DFEATURE_gssapi=OFF -DFEATURE_system_png=OFF -DFEATURE_system_jpeg=OFF -DCMAKE_MESSAGE_LOG_LEVEL=STATUS
|
|
make -C build "-j$NPROCS"
|
|
make -C build install
|
|
cd ..
|
|
|
|
echo "Installing Qt Tools..."
|
|
tar xf "qttools-everywhere-src-$QT.tar.xz"
|
|
cd "qttools-everywhere-src-$QT"
|
|
# 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
|
|
cmake -B build -DCMAKE_PREFIX_PATH="$INSTALLDIR" -DCMAKE_INSTALL_PREFIX="$INSTALLDIR" -DCMAKE_BUILD_TYPE=Release -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
|
|
make -C build "-j$NPROCS"
|
|
make -C build install
|
|
cd ..
|
|
|
|
echo "Installing Qt Translations..."
|
|
tar xf "qttranslations-everywhere-src-$QT.tar.xz"
|
|
cd "qttranslations-everywhere-src-$QT"
|
|
cmake -B build -DCMAKE_PREFIX_PATH="$INSTALLDIR" -DCMAKE_INSTALL_PREFIX="$INSTALLDIR" -DCMAKE_BUILD_TYPE=Release
|
|
make -C build "-j$NPROCS"
|
|
make -C build install
|
|
cd ..
|
|
|
|
echo "Cleaning up..."
|
|
cd ..
|
|
rm -r deps-build
|