Mercurial > repos > bgruening > package_numpy_1_7
changeset 2:c5fbe4aa5a74
Uploaded
author | bgruening |
---|---|
date | Fri, 12 Apr 2013 13:45:15 -0400 |
parents | c5f0d2504e45 |
children | c3041382815c |
files | tool_dependencies.xml |
diffstat | 1 files changed, 17 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/tool_dependencies.xml Fri Apr 12 10:10:20 2013 -0400 +++ b/tool_dependencies.xml Fri Apr 12 13:45:15 2013 -0400 @@ -1,16 +1,29 @@ <tool_dependency> + <!-- ToDo: numpy dependency, install numpy beforehand. + --> <package name="numpy" version="1.7.1"> + <repository toolshed="http://testtoolshed.g2.bx.psu.edu/" name="package_numpy_1_7" owner="bgruening" changeset_revision="c5f0d2504e45" /> + </package> + <package name="matplotlib" version="1.2.1"> <install version="1.0"> <actions> - <action type="download_by_url">https://pypi.python.org/packages/source/n/numpy/numpy-1.7.1.tar.gz</action> + <action type="download_by_url">https://downloads.sourceforge.net/project/matplotlib/matplotlib/matplotlib-1.2.1/matplotlib-1.2.1.tar.gz</action> + <action type="shell_command">wget http://downloads.sourceforge.net/project/freetype/freetype2/2.4.11/freetype-2.4.11.tar.bz2</action> + <action type="shell_command">tar xfvj freetype-2.4.11.tar.bz2 && + cd freetype-2.4.11 && + ./configure --prefix=$INSTALL_DIR/freetype/build && + make && + make install</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 --home $INSTALL_DIR --install-scripts $INSTALL_DIR/bin</action> + <action type="shell_command">export PYTHONPATH=$PYTHONPATH:$INSTALL_DIR/lib/python && + export CPLUS_INCLUDE_PATH=$INSTALL_DIR/freetype/build/include:$INSTALL_DIR/freetype/build/include/freetype2/ && + export LIBRARY_PATH=$INSTALL_DIR/freetype/build/lib/ && + python setup.py install --home $INSTALL_DIR --install-scripts $INSTALL_DIR/bin</action> <action type="set_environment"> <environment_variable name="PYTHONPATH" action="append_to">$INSTALL_DIR/lib/python</environment_variable> - <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable> </action> </actions> </install> - <readme>Compiling numpy requires a C and Fortran compiler (typically gcc and gfortran).</readme> + <readme>Compiling matplotlib requires a Ccompiler (typically gcc), freetype2, numpy and libpng.</readme> </package> </tool_dependency>