Qca aims to provide a straightforward and cross-platform crypto API, using Qt datatypes and conventions. Qca separates the API from the implementation, using plugins known as Providers.
This package is known to build and work properly using an LFS-8.1 platform.
Download (HTTP): http://download.kde.org/stable/qca/2.1.3/src/qca-2.1.3.tar.xz
Download MD5 sum: 5019cc29efcf828681cd93164238ce26
Download size: 672 KB
Estimated disk space required: 28 MB
Estimated build time: 1.5 SBU (additional 0.6 SBU for the tests)
Certificate Authority Certificates, CMake-3.9.1, Qt-5.9.1, and Which-2.21
Cyrus SASL-2.1.26, GnuPG-2.1.23, libgcrypt-1.8.0, libgpg-error-1.27, NSS-3.32, NSPR-4.16, OpenSSL-1.0.2l Libraries, p11-kit-0.23.8, Doxygen-1.8.13, and Which-2.21
User Notes: http://wiki.linuxfromscratch.org/blfs/wiki/qca
Fix the location of the CA certificates:
sed -i 's@ca-bundle.pem@ca-bundle.crt@' CMakeLists.txt
Install Qca by running the following commands:
mkdir build && cd build && cmake -DCMAKE_INSTALL_PREFIX=$QT5DIR \ -DCMAKE_BUILD_TYPE=Release \ -DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man \ -DOPENSSL_INCLUDE_DIR=/usr/include/openssl-1.0 \ -DOPENSSL_SSL_LIBRARY=/usr/lib/openssl-1.0/libssl.so \ -DOPENSSL_CRYPTO_LIBRARY=/usr/lib/openssl-1.0/libcrypto.so \ .. && make
To test the results, issue make test.
Now, as the root
user:
make install
-DCMAKE_BUILD_TYPE=Release
:
This switch is used to apply a higher level of compiler
optimizations.
-DQCA_MAN_INSTALL_DIR:PATH=/usr/share/man
:
Install the qca man page in the normal location.
Last updated on 2017-08-22 20:47:27 -0700