Liblinphone is a high-level SIP library integrating all calling and instant messaging features into an unified easy-to-use API. It is the cross-platform VoIP library on which the Linphone[1] application is based on, and that anyone can use to add audio and video calls or instant messaging capabilities to an application.
Copyright © Belledonne Communications
Liblinphone is dual licensed, and is available either :
under a GNU/AGPLv3 license, for free (open source). Please make sure that you understand and agree with the terms of this license before using it (see LICENSE.txt file for details).
under a proprietary license, for a fee, to be used in closed source applications. Contact Belledonne Communications for any question about costs and services.
The linphone-sdk[7] git project is the recommended way to build liblinphone, as it bundles all required an optional dependencies to build liblinphone as git submodules. It has a top-level CMake build script that makes life easier.
Here the main dependencies listed:
cmake . -DCMAKE_INSTALL_PREFIX=<prefix> -DCMAKE_PREFIX_PATH=<search_prefixes>
make
make install
CMAKE_INSTALL_PREFIX=<string>
: install prefixCMAKE_PREFIX_PATH=<string>
: column-separated list of prefixes where to search for dependenciesENABLE_STRICT=NO
: build without strict compilation flags (-Wall -Werror)ENABLE_DOC=YES
: Make the reference documentation of liblinphone to generatedENABLE_UNIT_TESTS=NO
: do not build testing binariesENABLE_VCARD=NO
: disable VCard4 supportENABLE_TOOLS=NO
: do not build tool binariesENABLE_LIME_X3DH=NO
: disable Linphone Instant Messaging EncryptionOur CMake scripts may automatically add some paths into research paths of generated binaries. To ensure that the installed binaries are striped of any rpath, use -DCMAKE_SKIP_INSTALL_RPATH=ON
while you invoke cmake.
Rpm packaging liblinphone can be generated with cmake3 using the following commands:
mkdir WORK
cd WORK
cmake3 ../
make package_source
rpmbuild -ta --clean --rmsource --rmspec liblinphone-<version>-<release>.tar.gz
Belledonne Communications SARL, all rights reserved.
This software is distributed under GNU GPLv3. Please read COPYING file for full license text.