# Description: A Qt-based client-side and server-side SOAP component # URL: https://github.com/KDAB/KDSoap # Maintainer: CRUX KDE Ports, kde-ports at crux dot nu # Depends on: qt6-base name=kdsoap version=2.2.0 release=1 source=(https://github.com/KDAB/KDSoap/releases/download/kdsoap-$version/kdsoap-$version.tar.gz) build() { cmake -S $name-$version -B build -G Ninja \ -D CMAKE_INSTALL_PREFIX=/usr \ -D CMAKE_INSTALL_LIBDIR=lib \ -D CMAKE_BUILD_TYPE=Release \ -D CMAKE_CXX_FLAGS_RELEASE="$CXXFLAGS" \ -D CMAKE_C_FLAGS_RELEASE="$CFLAGS" \ -D KDSoap_QT6=ON \ -Wno-dev cmake --build build DESTDIR=$PKG cmake --install build rm -r $PKG/usr/share } # vim: set ts=4 et: