comparison tool_dependencies.xml @ 2:a6b8f46acca7 default tip

Uploaded
author bgruening
date Thu, 23 May 2013 11:39:43 -0400
parents 9f522a6139f7
children
comparison
equal deleted inserted replaced
1:9f522a6139f7 2:a6b8f46acca7
3 <install version="1.0"> 3 <install version="1.0">
4 <actions> 4 <actions>
5 <!-- first action is always downloading --> 5 <!-- first action is always downloading -->
6 <action type="download_by_url">http://www.netlib.org/lapack/lapack-3.4.2.tgz</action> 6 <action type="download_by_url">http://www.netlib.org/lapack/lapack-3.4.2.tgz</action>
7 7
8 <action type="shell_command">cp INSTALL/make.inc.gfortran make.inc</action> 8 <action type="shell_command">sed 's/^OPTS\s.*/OPTS = -O2 -fPIC/g' INSTALL/make.inc.gfortran | sed 's/^NOOPT\s.*/OPTS = -O2 -fPIC/g' > make.inc</action>
9 <action type="shell_command">sed -i '.tmp' 's/^OPTS\s.*/OPTS = -O2 -fPIC/g' make.inc</action>
10 <action type="shell_command">sed -i '.tmp' 's/^NOOPT\s.*/OPTS = -O2 -fPIC/g' make.inc</action>
11 <action type="shell_command">mkdir build</action> 9 <action type="shell_command">mkdir build</action>
12 <action type="shell_command">cd build &amp;&amp; cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR/lapack</action> 10 <action type="shell_command">cd build &amp;&amp; cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR/lapack</action>
13 <action type="shell_command">cd build &amp;&amp; make</action> 11 <action type="shell_command">cd build &amp;&amp; make</action>
14 <action type="shell_command">cd build &amp;&amp; make install</action> 12 <action type="shell_command">cd build &amp;&amp; make install</action>
15 13