1
0
mirror of https://github.com/signalwire/freeswitch.git synced 2025-02-22 17:42:39 +00:00
2008-12-16 03:56:11 +00:00

14 lines
321 B
Bash

#!/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