The kdsoap-ws-discovery-client package contains a library that provides support for the WS-Discovery protocol, a recent protocol used to discover services available on a local network.
Development versions of BLFS may not build or run some packages properly if LFS or dependencies have been updated since the most recent stable versions of the books.
下载地址(HTTP):https://download.kde.org/stable/kdsoap-ws-discovery-client/kdsoap-ws-discovery-client-0.4.0.tar.xz
MD5 校验和:6d653d927efac8296662bc92784f2fe5
大小:32 KB
预计所需磁盘空间:7.5 MB
预计构建时间:0.2 SBU
Doxygen-1.17.0, Extra-CMake-Modules-6.26.0, and kdsoap-2.3.0
Install kdsoap-ws-discovery-client by running the following commands:
mkdir build &&
cd build &&
cmake -D CMAKE_INSTALL_PREFIX=/usr \
-D CMAKE_BUILD_TYPE=Release \
-D CMAKE_SKIP_INSTALL_RPATH=ON \
-D QT_MAJOR_VERSION=6 \
-W no-dev .. &&
make
To test the results, issue: make test.
Now, as the root user:
make install &&
mv -v /usr/share/doc/KDSoapWSDiscoveryClient{,-0.4.0}
-D
CMAKE_SKIP_INSTALL_RPATH=ON: This switch makes
cmake remove
hardcoded library search paths (rpath) when installing a binary
executable file or a shared library. This package does not need
rpath once it's installed into the standard location, and rpath may
sometimes cause unwanted effects or even security issues.
mv -v /usr/share/doc/KDSoapWSDiscoveryClient[...]:: This command moves the documentation to a versioned directory.
-D QT_MAJOR_VERSION=6: This
parameter tells the build system to build the Qt6 version of this
package instead of the Qt5 version.
-D BUILD_QCH=ON: This option tells the
build system to create documentation that can be used with
QtCreator, QtAssistant, or KDevelop.