This package requires the following:
- OpenSSL 3.0.7+ libraries and development headers
- OpenSSL tools (for testing)
- NSS softoken, tools and development headers (for testing)
- a C compiler that supports at least C11 semantics
- meson
- pkg-config
- p11-kit, p11-kit-devel, opensc and softhsm (for testing)
- Kryoptic softoken (for testing)
The usual command to build are:
meson setup builddirmeson compile -C builddirmeson test -C builddir
To link with OpenSSL installed in a custom path, set
PKG_CONFIG_PATH, or CFLAGS/LDFLAGS envvars accordingly at the
meson setup step. For example, let's assume OpenSSL is installed
under an absolute path $OPENSSL_DIR.
If you rely on pkg-config, point PKG_CONFIG_PATH to a directory
where libcrypto.pc or openssl.pc can be found.
PKG_CONFIG_PATH="$OPENSSL_DIR/lib64/pkgconfig" meson setup builddir
Otherwise, you can set CFLAGS/LDFLAGS:
CFLAGS="-I$OPENSSL_DIR/include" LDFLAGS="-L$OPENSSL_DIR/lib64" meson setup builddir
A "build info" string (which can be seen via openssl list -providers -verbose) can be set by using the build_info option before compilation:
- `meson configure -Dbuild_info="Build-Id: 123456789" builddir
The usual command to install is:
meson install -C builddir
Or simply copy the src/pkcs11.so (or src/pkcs11.dylib on Mac) in the appropriate directory for your OpenSSL installation.