diff options
author | mario <mario@slackverse.org> | 2013-06-03 17:33:01 -0500 |
---|---|---|
committer | Robby Workman <rworkman@slackbuilds.org> | 2013-06-04 00:11:33 -0500 |
commit | 1cea6afdc176c7a08e57adf112dd6d699742ba24 (patch) | |
tree | 9ac81a67b177706305834f9f31dc8b56141b37fb /system/freeswitch/README | |
parent | ca77a5a0a0bd68537c6f629c84519b26c10a23d1 (diff) | |
download | slackbuilds-1cea6afdc176c7a08e57adf112dd6d699742ba24.tar.gz |
system/freeswitch: Added (Open source telephony platform)
Signed-off-by: Robby Workman <rworkman@slackbuilds.org>
Diffstat (limited to 'system/freeswitch/README')
-rw-r--r-- | system/freeswitch/README | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/system/freeswitch/README b/system/freeswitch/README new file mode 100644 index 0000000000..5567ede0be --- /dev/null +++ b/system/freeswitch/README @@ -0,0 +1,26 @@ +FreeSWITCH is a scalable open source cross-platform telephony platform +designed to route and interconnect popular communication protocols using +audio, video, text or any other form of media. It was created in 2006 to +fill the void left by proprietary commercial solutions. FreeSWITCH also +provides a stable telephony platform on which many telephony applications +can be developed using a wide range of free tools. + +Unlike other SlackBuilds which have a /usr installation prefix, this +script will install FreeSWITCH to /opt/freeswitch instatead. This is done +to simplify the build process since FreeSWITCH attemps to install itself +into many non-standard directories in the prefix directory. Therefore, it +is installed as a self-contained and easily-removable location in /opt. + +This script also expects there to be a user and group called "freeswitch", +with uid and gid of 269 (see http://slackbuilds.org/uid_gid.txt): +# groupadd -g 269 freeswitch +# useradd -u 269 -d /opt/freeswitch -s /bin/bash -g freeswitch freeswitch + +If you execute the script without creating this user and group, it won't +build the FreeSWITCH package. + +To enable building with PostgreSQL support, use: +# PGSQL=yes ./freeswitch.SlackBuild + +To disable building with Python support, use: +# PYTHON=no ./freeswitch.SlackBuild |