From 90e87a481145242bf661de4a96a7ccda1476034e Mon Sep 17 00:00:00 2001
From: Michal Bielicki <michal.bielicki@seventhsignal.de>
Date: Tue, 18 Jan 2011 15:27:57 +0300
Subject: [PATCH] this file is not needed anymore, included in spec file for
 sounds

---
 build/buildsounds-callie.sh | 15 ---------------
 1 file changed, 15 deletions(-)
 delete mode 100755 build/buildsounds-callie.sh

diff --git a/build/buildsounds-callie.sh b/build/buildsounds-callie.sh
deleted file mode 100755
index 06099e6c5e..0000000000
--- a/build/buildsounds-callie.sh
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/bin/bash
-
-sounds_location=$1
-for rate in 32000 16000 8000
-do 
-    for i in ascii base256 conference currency digits ivr misc phonetic-ascii time voicemail zrtp
-    do
-	mkdir -p $sounds_location/$i/$rate
-	for f in `find $sounds_location/$i/48000 -name \*.wav`
-	do
-	    echo "generating" $sounds_location/$i/$rate/`basename $f`
-	    sox $f -r $rate $sounds_location/$i/$rate/`basename $f`
-	done
-    done
-done