add 'make sounds' and 'make sounds-install' makefile targets to download and install soundfiles (FSBUILD-28)

git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@6611 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Michael Jerris
2007-12-10 23:38:42 +00:00
parent 4fb9901b25
commit 3d5fcabea7
3 changed files with 52 additions and 2 deletions
+36
View File
@@ -0,0 +1,36 @@
#!/bin/sh
TAR=@TAR@
ZCAT=@ZCAT@
WGET=@WGET@
CURL=@CURL@
DIR=`pwd`
if [ -f $WGET ] ; then
DOWNLOAD_CMD=$WGET
else
if [ -f $CURL ] ; then
DOWNLOAD_CMD="$CURL -O"
fi
fi
base=http://files.freeswitch.org/
tarfile=$1
install=$2
if [ ! -f $tarfile ] ; then
$DOWNLOAD_CMD $base$tarfile
if [ ! -f $tarfile ] ; then
echo cannot find $tarfile
exit 1
fi
fi
if [ ! -z $install ] ; then
test -d $install || mkdir $install
cd $install && $ZCAT -c -d $DIR/$tarfile | $TAR x
fi
exit 0