Next changeset 1:84e97f5cd3ab (2015-02-12) |
Commit message:
Imported from capsule None |
added:
tool_dependencies.xml |
b |
diff -r 000000000000 -r 03eea94e534e tool_dependencies.xml --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool_dependencies.xml Thu Oct 09 05:20:53 2014 -0400 |
b |
@@ -0,0 +1,22 @@ +<?xml version="1.0"?> +<tool_dependency> + <package name="numpy" version="1.9"> + <install version="1.0"> + <actions> + <action type="download_by_url">https://pypi.python.org/packages/source/n/numpy/numpy-1.9.0.tar.gz#md5=510cee1c6a131e0a9eb759aa2cc62609</action> + <action type="make_directory">$INSTALL_DIR/lib/python</action> + <action type="shell_command"> + export PYTHONPATH=$PYTHONPATH:$INSTALL_DIR/lib/python && + python setup.py install --install-lib $INSTALL_DIR/lib/python --install-scripts $INSTALL_DIR/bin + </action> + <action type="set_environment"> + <environment_variable action="prepend_to" name="PYTHONPATH">$INSTALL_DIR/lib/python</environment_variable> + <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR/bin</environment_variable> + <environment_variable action="set_to" name="PYTHONPATH_NUMPY">$INSTALL_DIR/lib/python</environment_variable> + <environment_variable action="set_to" name="PATH_NUMPY">$INSTALL_DIR/bin</environment_variable> + </action> + </actions> + </install> + <readme>Compiling numpy requires a C and Fortran compiler (typically gcc and gfortran). The PYTHONPATH for numpy can be accessed through PYTHONPATH_NUMPY and the binaries with PATH_NUMPY.</readme> + </package> +</tool_dependency> |