aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/scripts/get_mp3_source.sh
blob: 5c4e76a893c6d6347920db26467b071be47f6027 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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