*: *Local builds* Place the tarball directly in the external's directory. Modify the package's CMakeFiles.txt, looking for ExternalProject_Add. Inside that function call, comment out the "DOWNLOAD_COMMAND" line. Comment out the "URL" line and add a new one that looks like "URL /full/path/to/my/tarball.tar.gz".  This will only work on your localhost.  You cannot use a relative path in the URL. *Do not push any commits that contain the full tarball to the public git repository.*
 
-*: Place the tarball at some other ftp or http location. Your CS web page or the temporary directory under Condor's anonymous ftp server are possibilities.  Then edit the CMakeLists.txt to load the unusual location.  You'll be changing the DOWNLOAD_COMMAND and URL arguments to  ExternalProject_Add.
+*: *Local webserver* Place the tarball at some other ftp or http location. Your CS web page ({link: http://pages.cs.wisc.edu/~username http://pages.cs.wisc.edu/~username) or the temporary directory under Condor's anonymous ftp server are possibilities.  Then edit the CMakeLists.txt to load the unusual location.  You'll be changing the DOWNLOAD_COMMAND and URL arguments to  ExternalProject_Add.
 
 *TODO: adesmet's edits end here*