We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 025ce54 commit dbfcbfeCopy full SHA for dbfcbfe
3 files changed
build_inplace
@@ -1,7 +1,9 @@
1
#!/bin/sh
2
3
+chmod +x extract_pjsip.sh
4
+./extract_pjsip.sh
5
+
6
chmod +x deps/pjsip/configure
7
chmod +x deps/pjsip/aconfigure
8
python3 setup.py build_ext --inplace "$@"
9
test -d build && python3 setup.py clean
-
docs/Install.linux
@@ -81,6 +81,10 @@ sudo dpkg -i *.deb
81
Step 4. Install the SDK
82
-----------------------
83
84
+First unpack pjsip archive (only needs to be done once):
85
86
87
88
The SDK consists of two packages:
89
90
- python3-sipsimple
extract_pjsip.sh
@@ -0,0 +1,4 @@
+#!/bin/bash
+if [ ! -d deps/pjsip ]; then
+ tar zxvf deps/pjsip-2.10.tgz -C deps/
+fi
0 commit comments