Mercurial > repos > iuc > package_bzlib_1_0
comparison tool_dependencies.xml @ 18:0c1e5777743b 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:59:14 -0400 |
parents | f4fc10839a05 |
children | 7ebd16eeff6b |
comparison
equal
deleted
inserted
replaced
17:f4fc10839a05 | 18:0c1e5777743b |
---|---|
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"><![CDATA[ | 7 <action type="shell_command"><![CDATA[ |
8 if [ "$(uname -s)" == 'Linux' ] | 8 if [ "$(uname -s)" == "Linux" ] |
9 then | 9 then |
10 make -f Makefile-libbz2_so && | 10 make -f Makefile-libbz2_so && |
11 make && | 11 make && |
12 make install PREFIX=$INSTALL_DIR/bzlib && | 12 make install PREFIX=$INSTALL_DIR/bzlib && |
13 cp bzip2-shared $INSTALL_DIR/bzlib/bin/bzip2 && | 13 cp bzip2-shared $INSTALL_DIR/bzlib/bin/bzip2 && |
14 cp -a libbz2.so* $INSTALL_DIR/bzlib/lib && | 14 cp -a libbz2.so* $INSTALL_DIR/bzlib/lib && |
15 ln -s libbz2.so.1.0 $INSTALL_DIR/bzlib/lib/libbz2.so | 15 ln -s libbz2.so.1.0 $INSTALL_DIR/bzlib/lib/libbz2.so |
16 elif [ "$(uname -s)" == 'Darwin' ] | 16 elif [ "$(uname -s)" == "Darwin" ] |
17 then | 17 then |
18 make && | 18 make && |
19 make install PREFIX=$INSTALL_DIR/bzlib | 19 make install PREFIX=$INSTALL_DIR/bzlib |
20 fi | 20 fi |
21 ]]> | 21 ]]> |