Skip to content
Snippets Groups Projects
get_mp3_source.sh 284 B
Newer Older
  • Learn to ignore specific revisions
  • #!/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 $@