mirror of
https://github.com/cgrates/cgrates.git
synced 2026-02-20 06:38:45 +05:00
29 lines
642 B
YAML
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'
|
|
|