mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-07 22:02:12 +08:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
INSTALLATION GUIDE
|
|
|
|
Wiki: https://projects.savoirfairelinux.com/projects/sflphone/wiki/BuildInstructions
|
|
|
|
* CORE INSTALLATION
|
|
|
|
# Install dependencies (subject to change):
|
|
apt-get install gnome-doc-utils build-essential autoconf libtool
|
|
libasound2-dev libpulse-dev libsamplerate0-dev libcommoncpp2-dev
|
|
libccrtp-dev libzrtpcpp-dev libdbus-1-dev libdbus-c++-dev libyaml-dev
|
|
libpcre3-dev libgsm1-dev libspeex-dev libspeexdsp-dev libcelt-dev
|
|
|
|
# Go to the root of the application core directory
|
|
cd daemon
|
|
# Compile pjsip
|
|
cd libs
|
|
./compile_pjsip.sh
|
|
# Go back to the root
|
|
cd ../..
|
|
./autogen.sh
|
|
./configure
|
|
make && sudo make install
|
|
|
|
You are done with the core !
|
|
|
|
* GNOME CLIENT INSTALLATION
|
|
|
|
# Install dependencies (subject to change):
|
|
apt-get install libnotify-dev libgtk2.0-dev libwebkit-dev libgnomeui-dev check
|
|
|
|
# Go to the root of the gnome client directory
|
|
cd gnome
|
|
./autogen.sh
|
|
./configure
|
|
make && sudo make install
|
|
|
|
You are done with the gnome client !
|
|
|
|
Then, to start SFLphone, simply go in Applications > Internet > SFLphone VoIP Client.
|
|
|
|
Thanks You
|
|
|
|
SFLphone Team
|