1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-02-24 18:41:57 +00:00

14 lines
321 B
Bash
Raw Normal View History

#!/bin/sh
cd /root
svn co https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/ptlib/trunk ptlib
cd ptlib
./configure --prefix=/usr
make
make install
cd ..
svn co https://opalvoip.svn.sourceforge.net/svnroot/opalvoip/opal/trunk opal
cd opal
PKG_CONFIG_PATH=/usr/lib/pkgconfig ./configure --prefix=/usr
make
make install