mirror of
https://github.com/signalwire/freeswitch.git
synced 2025-02-12 21:24:14 +00:00
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@180 d0543943-73ff-0310-b7d9-9358b9ac24b2
21 lines
327 B
Bash
Executable File
21 lines
327 B
Bash
Executable File
#!/bin/bash
|
|
base=http://www.sofaswitch.com/mikej
|
|
tar=$1
|
|
uncompressed=`echo $tar | sed "s/\.tar\.gz//g"`
|
|
if [ -d libs/$uncompressed ] ; then
|
|
echo $uncompressed already installed
|
|
exit
|
|
fi
|
|
shift
|
|
cd libs
|
|
rm -f $tar
|
|
wget $base/$tar
|
|
tar -zxvf $tar
|
|
echo "lame $uncompressed"
|
|
cd $uncompressed
|
|
./configure $@
|
|
make
|
|
make install
|
|
|
|
|