# Description: Library for finding WS-Discovery devices in the network using Qt5 and KDSoap # URL: https://invent.kde.org/libraries/kdsoap-ws-discovery-client # Maintainer: CRUX KDE Ports, kde-ports at crux dot nu # Depends on: extra-cmake-modules kdsoap name=kdsoap-ws-discovery-client version=0.4.0 release=1 source=(https://download.kde.org/stable/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client-$version.tar.xz) 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 QT_MAJOR_VERSION=6 \ -Wno-dev cmake --build build DESTDIR=$PKG cmake --install build rm -rf $PKG/usr/share } # vim: set ts=4 et: