X-Git-Url: http://gitweb.michael.orlitzky.com/?a=blobdiff_plain;f=makefile;h=11a9c5c60c82671876ab45d006a8770c4a213538;hb=7b8cd40d5f84e25422f34e23ed3734053298b5b9;hp=691e1943f3c230abebaac57f100f0df6b1fe1f2d;hpb=ac32d9ecd4b797379528b5cb901003ba34d8f1c1;p=dead%2Fcensus-tools.git diff --git a/makefile b/makefile index 691e194..11a9c5c 100644 --- a/makefile +++ b/makefile @@ -1,7 +1,7 @@ DB_NAME=census DB_USER=postgres TIGER_SRID=4269 -SHAPELY_URL=http://svn.gispython.org/svn/gispy/Shapely/trunk +SHAPELY_URL=http://pypi.python.org/packages/source/S/Shapely/Shapely-1.0.14.tar.gz # Root folder for the shapefiles. TIGER_ROOT=http://www2.census.gov/geo/tiger/TIGER2009 @@ -43,11 +43,11 @@ test: # Download or check out any third-party libraries. lib: - if [ -d lib/Shapely ]; then \ - cd lib/Shapely; \ - svn update; \ - else \ - svn co $(SHAPELY_URL) lib/Shapely; \ + if [ ! -d lib/Shapely ]; then \ + wget -O shapely.tar.gz $(SHAPELY_URL); \ + tar -xvzf shapely.tar.gz -C lib/ ; \ + rm shapely.tar.gz; \ + mv lib/Shapely* lib/Shapely; \ fi;