aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-08-03 18:48:45 +0000
committerrussell <russell@f38db490-d61c-443f-a65b-d21fe96a405b>2010-08-03 18:48:45 +0000
commit4ab73bf3aa54c3751c23ee158d4397fe354f5e48 (patch)
treed72e6be9aca3a66d12a0e080546f1d6d8078c7c7 /contrib
parentb662c60397fe0dee5a2b6e2a4c12d69ea901061a (diff)
Remove the MP3 decoder source code and replace it with a small shell script.
Review: https://reviewboard.asterisk.org/r/836/ git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.8@280742 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/scripts/get_mp3_source.sh14
1 files changed, 14 insertions, 0 deletions
diff --git a/contrib/scripts/get_mp3_source.sh b/contrib/scripts/get_mp3_source.sh
new file mode 100755
index 000000000..b2711a1eb
--- /dev/null
+++ b/contrib/scripts/get_mp3_source.sh
@@ -0,0 +1,14 @@
+#!/bin/sh -e
+
+if [ -f addons/mp3/mpg123.h ]; then
+ echo "***"
+ echo "The MP3 source code appears to already be present and does not"
+ echo "need to be downloaded."
+ echo "***"
+
+ exit 1
+fi
+
+svn export http://svn.digium.com/svn/thirdparty/mp3/trunk addons/mp3
+
+exit 0