Files
cgrates/data/ansible/calls/freeswitch/pjsua.yaml
2021-06-25 18:11:16 +02:00

29 lines
642 B
YAML

---
- name: Download PJSUA
become: yes
shell: 'sudo wget https://github.com/pjsip/pjproject/archive/refs/tags/2.9.tar.gz'
args:
chdir: '/tmp'
- name: Unzip PJSUA
become: yes
shell: 'sudo tar -xvf 2.9.tar.gz'
args:
chdir: '/tmp'
- name: Export CFLAGS
become: yes
shell: 'export CFLAGS="$CFLAGS -fPIC"'
- name: Install PJSUA
become: yes
shell: 'sudo ./configure && make dep && make && make install'
args:
chdir: '/tmp/pjproject-2.9'
- name: Copy PJSUA into /usr/bin
become: yes
shell: 'sudo mv pjsua-x86_64-unknown-linux-gnu /usr/bin/pjsua'
args:
chdir: '/tmp/pjproject-2.9/pjsip-apps/bin'