Skip to content
Snippets Groups Projects
INSTALL 1.11 KiB
Newer Older
INSTALLATION GUIDE

* 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
Rafaël Carré's avatar
Rafaël Carré committed
    cd daemon
    cd libs/pjproject
    ./autogen.sh
    ./configure --prefix=/usr
    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
Rafaël Carré's avatar
Rafaël Carré committed
    cd gnome
    ./autogen.sh
    ./configure --prefix=/usr
    make && sudo make install

    You are done with the gnome client !

Then, to start SFLphone, simply go in Applications > Internet > SFLphone VoIP Client.
Rafaël Carré's avatar
Rafaël Carré committed