* update qt6-doc to 6.8.0-1

This commit is contained in:
Alexander Baldeck 2024-11-12 11:54:36 +01:00
parent ca23e02f40
commit aff32e9f22

View File

@ -39,6 +39,11 @@ source=(https://download.qt.io/official_releases/qt/${_pkgver%.*}/${_pkgver}/sin
sha256sums=('70f1a87c6ecc6c108dec6e9389e564f8798bd48bec4c596f28d0564c1dbbc2c6')
build() {
case "${CARCH}" in
x86_64) ;;
*) _cmake_options=(-DBUILD_qtwebengine=OFF) ;;
esac
cmake -B build -S $_pkgfn -G Ninja \
-DCMAKE_INSTALL_PREFIX=/usr \
-DINSTALL_BINDIR=lib/qt6/bin \
@ -50,7 +55,7 @@ build() {
-DINSTALL_EXAMPLESDIR=share/doc/qt6/examples \
-DQT_FEATURE_journald=ON \
-DQT_FEATURE_openssl_linked=ON \
-DCMAKE_MESSAGE_LOG_LEVEL=STATUS
-DCMAKE_MESSAGE_LOG_LEVEL=STATUS ${_cmake_options[@]}
cmake --build build --target docs
}