Installing YASS from source¶
Installing pjproject¶
YASS is based on PJSIP project (http://www.pjsip.org) thus, you need to have pjproject installed. In our debian repository you'll find pjproject 1.0.x release packaged as 'pjproject'.
Just add the SIPdoc Debian repository to your /etc/apt/sources.list and install the package:
echo "deb http://deb.sipdoc.net debian main" >> /etc/apt/sources.list apt-get update apt-get install pjproject
NOTE: You could compile any version of pjproject by hand, but bugs may appear :-/ YASS has been tested just with the version in our repo, but we keep ut to date with the PJSIP stable releases.
Compiling YASS¶
First, download and uncompress latest YASS version from the files section. After that enter the directory and just 'make' YASS:
cd yass-0.5.X make install
IMPORTANT: Make command builds and installs YASS, so you need to be root.
Creating a deb package is also possible by typing:
make deb
(it generates the deb package in the parent directory).