Problem: The URL used by get-deps.sh from subversion-1.6.17.tar.gz to get SQLite, http://www.sqlite.org/sqlite-amalgamation-3.7.5.tar.gz, is 404.
Proposed Solution: It looks like sqlite.org has changed (?) their filename format, as the latest version of the amalgamation file is 3.7.7.1, and the URL is: http://sqlite.org/sqlite-amalgamation-3070701.zip Need to change: Line 31: SQLITE_VERSION=3.7.5 to SQLITE_VERSION=3070701 Line 53: wget -nc http://www.sqlite.org/$SQLITE.tar.gz to wget -nc http://www.sqlite.org/$SQLITE.zip Line 61: gzip -dc $TEMPDIR/$SQLITE.tar.gz | tar -xf - to unzip $TEMPDIR/$SQLITE.zip Line 67: mv sqlite-$SQLITE_VERSION sqlite-amalgamation to mv $SQLITE.zip sqlite-amalgamation -Conor