Skip to content

Commit fc40216

Browse files
authored
Install steps
1 parent d28754b commit fc40216

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

README.md

+17
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,23 @@ sudo make install
7171

7272
Also, packages (rpm, deb and tgz) are available in "[dist](https://github.com/staskobzar/sippak/tree/master/dist)" directory.
7373

74+
Here is step by step install example for Ubuntu. Note version 2.7.x of pjproject. This will install everything for deployement and development. "make test" is optional.
75+
```sh
76+
$ apt-get update
77+
$ apt-get -y install build-essential automake ncurses-dev cmake libcmocka0 git \
78+
pkg-config autoconf libterm-ui-perl libasound2-dev libalsaplayer-dev openssl libssl-dev apt-utils xterm \
79+
curl ncurses-dev libsctp-dev libpcap-dev ca-certificates sip-tester
80+
$ git clone -b 2.7.x --depth 1 https://github.com/pjsip/pjproject.git
81+
$ cd pjproject
82+
$ ./configure --prefix=/usr && make dep && make && make install
83+
$ cd ..
84+
$ git clone https://github.com/staskobzar/sippak.git
85+
$ cd sippak
86+
$ make
87+
$ make test
88+
$ make install
89+
```
90+
7491
### Try with docker without installing
7592

7693
```

0 commit comments

Comments
 (0)