siproc

A primitive SIP client that spawns processes for each call
git clone git://xatko.vsos.ethz.ch/siproc.git
Log | Files | Refs | README

commit b86e9b6a26aed3700f09649b364bf3cd9f42c773
parent a3f75ccf177ee909c5f05faf13158c39240f6c3b
Author: Dominik Schmidt <dominik@schm1dt.ch>
Date:   Sat, 31 Aug 2019 21:29:16 +0200

Explain how to build the program in the README.md

Diffstat:
MREADME.md | 23+++++++++++++++++++++++
1 file changed, 23 insertions(+), 0 deletions(-)

diff --git a/README.md b/README.md @@ -4,6 +4,29 @@ SiProc SiProc is a primitive SIP Client used for call automatization by spawning a given process for each call. It uses the [pjsip](http://www.pjsip.org/) library as a backend. +Building +-------- + +First, install the pjsip-library, which goes by many names in different distributions: + +``` +apt-get install libpjproject-dev +``` + +for Debian, or: + +``` +emerge -av net-libs/pjproject +``` + +for Gentoo. Afterwords, a simple: + +``` +make && make install +``` + +should do. + Usage -----