Contents
Installed Programs:
None
Installed Libraries:
libsrtp2
Installed Directories:
/usr/include/srtp2
The libsrtp package provides functions for Secure Realtime Transport Protocol, or SRTP.
Install libsrtp by running the following commands:
mkdir build &&
cd build &&
meson setup --prefix=/usr \
--buildtype=release \
-D crypto-library=nss \
-D crypto-library-kdf=disabled \
.. &&
ninja
Now, as the root user:
ninja install
--buildtype=release: Specify a buildtype
suitable for stable releases of the package, as the default may
produce unoptimized binaries.