21 lines
512 B
Bash
21 lines
512 B
Bash
#!/bin/sh
|
|
|
|
#move to script directory so all relative paths work
|
|
cd "$(dirname "$0")"
|
|
|
|
#includes
|
|
. ../config.sh
|
|
. ../environment.sh
|
|
|
|
# change the working directory
|
|
cd /usr/src/freeswitch
|
|
|
|
# compile and install the sounds
|
|
make sounds-install moh-install
|
|
make hd-sounds-install hd-moh-install
|
|
make cd-sounds-install cd-moh-install
|
|
|
|
#move the music into music/default directory
|
|
mkdir -p /usr/share/freeswitch/sounds/music/default
|
|
mv /usr/share/freeswitch/sounds/music/*000 /usr/share/freeswitch/sounds/music/default
|