summaryrefslogtreecommitdiff
path: root/contrib/scripts
diff options
context:
space:
mode:
authorRussell Bryant <russell@russellbryant.com>2010-08-03 18:50:14 +0000
committerRussell Bryant <russell@russellbryant.com>2010-08-03 18:50:14 +0000
commit5f451483992a056f27c0099aef4eb613013513b7 (patch)
tree945e28458b83cd27ddf97babe2156c878b15645c /contrib/scripts
parentee6592684bc7e04e00527bf6cf7b0879881d54e1 (diff)
Merged revisions 280742 via svnmerge from
https://origsvn.digium.com/svn/asterisk/branches/1.8 ........ r280742 | russell | 2010-08-03 13:48:45 -0500 (Tue, 03 Aug 2010) | 4 lines Remove the MP3 decoder source code and replace it with a small shell script. Review: https://reviewboard.asterisk.org/r/836/ ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@280743 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'contrib/scripts')
-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