Compiling the applications
The order we compile the applications is important. Compiling them out of order would mean that some of the dependancies of an application might not be fulfilled and things wont work as expected. You will need to be inside the actual directory of the source you are trying to install
Compiling libpri
Libpri dnt have a configure script so just it needs Make and Make Install
cd /usr/src/libpri
make
make install
Compiling Zaptel
cd /usr/src/zaptel
./configure
make
make install
make config
Compiling Asterisk
cd /usr/src/asterisk
./configure
make
make install
make samples
make config
Compiling Asterisk-Addons
cd /usr/src/asterisk-addons
./configure
make install
make samples
