comparison tool_dependencies.xml @ 15:4571a1e192e2 draft

planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/packages/package_bzlib_1_0 commit fdfb58648bf02f85eb59bdb5b2b5d30d6ac116ef-dirty
author bgruening
date Sat, 10 Oct 2015 04:30:00 -0400
parents 6ebf4fdf5359
children f510d17420fb
comparison
equal deleted inserted replaced
14:6ebf4fdf5359 15:4571a1e192e2
2 <package name="bzlib" version="1.0.6"> 2 <package name="bzlib" version="1.0.6">
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.bzip.org/1.0.6/bzip2-1.0.6.tar.gz</action> 6 <action type="download_by_url">http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz</action>
7 <action type="shell_command">make -f Makefile-libbz2_so</action> 7 <action type="shell_command">
8 <action type="shell_command">make install PREFIX=$INSTALL_DIR/bzlib</action> 8 unamestr=`uname` &amp;&amp;
9 if [[ "$unamestr" == 'Linux' ]]; then
10 make -f Makefile-libbz2_so &amp;&amp;
11 make &amp;&amp;
12 make install PREFIX=$INSTALL_DIR/bzlib &amp;&amp;
13 cp bzip2-shared $INSTALL_DIR/bzlib/bin/bzip2 &amp;&amp;
14 cp -a libbz2.so* $INSTALL_DIR/bzlib/lib &amp;&amp;
15 ln -s libbz2.so.1.0 $INSTALL_DIR/bzlib/lib/libbz2.so
16 elif [[ "$unamestr" == 'Darwin' ]]; then
17 make &amp;&amp;
18 make install PREFIX=$INSTALL_DIR/bzlib
19 fi
20 </action>
9 <action type="move_directory_files"> 21 <action type="move_directory_files">
10 <source_directory>./</source_directory> 22 <source_directory>./</source_directory>
11 <destination_directory>$INSTALL_DIR/bzlib/source</destination_directory> 23 <destination_directory>$INSTALL_DIR/bzlib/source</destination_directory>
12 </action> 24 </action>
13 <action type="set_environment"> 25 <action type="set_environment">