view tool_dependencies.xml @ 0:2574cc1efadb

Uploaded
author bgruening
date Fri, 17 May 2013 14:57:57 -0400
parents
children 224343b02e0a
line wrap: on
line source

<tool_dependency>
    <package name="atlas" version="3.10.1">
        <install version="1.0">
            <actions>
                <!-- first action is always downloading -->
                <action type="download_by_url">http://downloads.sourceforge.net/project/math-atlas/Stable/3.10.1/atlas3.10.1.tar.bz2</action>

                <action type="download_file">http://www.netlib.org/lapack/lapack-3.4.2.tgz</action> 

                <action type="shell_command">cd ATLAS &amp;&amp;
                    mkdir build &amp;&amp;
                    cd build &amp;&amp;
                    cpufreq-selector -g performance &amp;&amp;
                    ../configure -Fa alg -fPIC --prefix=$INSTALL_DIR/atlas/ --with-netlib-lapack-tarfile=../../lapack-3.4.2.tgz</action>
                <action type="shell_command">cd ./ATLAS/build &amp;&amp; make </action>
                <action type="shell_command">cd ./ATLAS/build &amp;&amp; make install</action>

                <action type="set_environment">
                    <environment_variable name="ATLAS_LIB_DIR" action="set_to">$INSTALL_DIR/atlas/lib</environment_variable>
                    <environment_variable name="ATLAS_INCLUDE_DIR" action="set_to">$INSTALL_DIR/atlas/include</environment_variable>
                </action>
            </actions>
        </install>
        <readme>ATLAS_LIB_DIR and ATLAS_INCLUDE_DIR will be set (including libatlas.a)</readme>
    </package>
</tool_dependency>