Repository 'package_bzlib_1_0'
hg clone https://testtoolshed.g2.bx.psu.edu/repos/iuc/package_bzlib_1_0

Changeset 16:f510d17420fb (2015-10-10)
Previous changeset 15:4571a1e192e2 (2015-10-10) Next changeset 17:f4fc10839a05 (2015-10-10)
Commit message:
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/packages/package_bzlib_1_0 commit fdfb58648bf02f85eb59bdb5b2b5d30d6ac116ef-dirty
modified:
tool_dependencies.xml
b
diff -r 4571a1e192e2 -r f510d17420fb tool_dependencies.xml
--- a/tool_dependencies.xml Sat Oct 10 04:30:00 2015 -0400
+++ b/tool_dependencies.xml Sat Oct 10 04:51:36 2015 -0400
[
@@ -4,19 +4,19 @@
             <actions>
                 <!-- first action is always downloading -->
                 <action type="download_by_url">http://www.bzip.org/1.0.6/bzip2-1.0.6.tar.gz</action>
-                <action type="shell_command">
-                    unamestr=`uname` &amp;&amp;
-                    if [[ "$unamestr" == 'Linux' ]]; then
-                        make -f Makefile-libbz2_so &amp;&amp;
-                        make &amp;&amp;
-                        make install PREFIX=$INSTALL_DIR/bzlib &amp;&amp;
-                        cp bzip2-shared $INSTALL_DIR/bzlib/bin/bzip2 &amp;&amp;
-                        cp -a libbz2.so* $INSTALL_DIR/bzlib/lib &amp;&amp;
+                <action type="shell_command"><![CDATA[
+                    if [ "$(uname -s)" == 'Linux' ]; then
+                        make -f Makefile-libbz2_so &&
+                        make &&
+                        make install PREFIX=$INSTALL_DIR/bzlib &&
+                        cp bzip2-shared $INSTALL_DIR/bzlib/bin/bzip2 &&
+                        cp -a libbz2.so* $INSTALL_DIR/bzlib/lib &&
                         ln -s libbz2.so.1.0 $INSTALL_DIR/bzlib/lib/libbz2.so
-                    elif [[ "$unamestr" == 'Darwin' ]]; then
-                        make &amp;&amp;
+                    elif [ "$(uname -s)" == 'Darwin' ]; then
+                        make &&
                         make install PREFIX=$INSTALL_DIR/bzlib
                     fi
+                 ]]>
                 </action>
                 <action type="move_directory_files">
                     <source_directory>./</source_directory>