Previous changeset 0:98a7d116c15f (2013-08-11) Next changeset 2:e87b2acfb5d2 (2016-06-07) |
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/packages/package_lapack_3_4 commit e10d6e2c4435771dc6f44d940359c1a31c0d6742-dirty |
modified:
tool_dependencies.xml |
b |
diff -r 98a7d116c15f -r 5686c79a72d5 tool_dependencies.xml --- a/tool_dependencies.xml Sun Aug 11 06:27:58 2013 -0400 +++ b/tool_dependencies.xml Fri Jul 17 10:34:29 2015 -0400 |
b |
@@ -5,9 +5,11 @@ <!-- first action is always downloading --> <action type="download_by_url">http://www.netlib.org/lapack/lapack-3.4.2.tgz</action> - <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> <action type="shell_command">mkdir build</action> - <action type="shell_command">cd build && cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR/lapack</action> + <action type="shell_command"> + cd build && + cmake .. -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR/lapack -DCMAKE_Fortran_FLAGS='-O2 -fPIC' + </action> <action type="shell_command">cd build && make</action> <action type="shell_command">cd build && make install</action> |