# Description: Static and runtime integration of SCXML models into Qt6 code # URL: https://www.qt.io/ # Maintainer: Tim Biermann, tbier at posteo dot de # Depends on: qt6-declarative name=qt6-scxml version=6.6.3 release=1 source=(https://download.qt.io/official_releases/qt/${version%.*}/$version/submodules/qtscxml-everywhere-src-$version.tar.xz) build() { prt-get isinst ninja && PKGMK_QT6+=' -G Ninja' prt-get isinst ccache && PKGMK_QT6+=' -D QT_USE_CCACHE=ON' && PATH="$(echo ${PATH} | awk -v RS=: -v ORS=: '/ccache/ {next} {print}' | sed 's/:*$//')" cmake -S qtscxml-everywhere-src-$version -B build $PKGMK_QT6 \ -D CMAKE_BUILD_TYPE=Release \ -D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \ -D CMAKE_C_FLAGS_RELEASE="$CFLAGS" cmake --build build DESTDIR=$PKG cmake --install build }