Mercurial > repos > bgruening > package_boost_1_54
comparison tool_dependencies.xml @ 0:0464d82a4c3f draft default tip
inital version
author | bgruening |
---|---|
date | Fri, 09 Aug 2013 10:39:54 -0400 |
parents | |
children |
comparison
equal
deleted
inserted
replaced
-1:000000000000 | 0:0464d82a4c3f |
---|---|
1 <?xml version="1.0"?> | |
2 <tool_dependency> | |
3 <package name="bzlib" version="1.0.6"> | |
4 <repository changeset_revision="58a38de96f9b" name="package_bzlib_1_0" owner="bgruening" prior_installation_required="True" toolshed="http://testtoolshed.g2.bx.psu.edu" /> | |
5 </package> | |
6 <package name="boost" version="1.54.0"> | |
7 <install version="1.0"> | |
8 <actions> | |
9 <action type="download_by_url">http://sourceforge.net/projects/boost/files/boost/1.54.0/boost_1_54_0.tar.bz2</action> | |
10 | |
11 <!-- populate the environment variables from the dependend repos --> | |
12 <action type="set_environment_for_install"> | |
13 <repository changeset_revision="58a38de96f9b" name="package_bzlib_1_0" owner="bgruening" toolshed="http://testtoolshed.g2.bx.psu.edu"> | |
14 <package name="bzlib" version="1.0.6" /> | |
15 </repository> | |
16 </action> | |
17 | |
18 <action type="shell_command">./bootstrap.sh</action> | |
19 <!-- try to set the right architecture with uname -m --> | |
20 <action type="shell_command"> | |
21 if [ $(uname -m) == 'x86_64' ]; then | |
22 ./bjam install --prefix=$INSTALL_DIR/boost/ -sBZIP2_INCLUDE=$BZLIB_INCLUDE_DIR -sBZIP2_LIB=$BZLIB_LIB_DIR -sBZIP2_SOURCE=$BZLIB_SOURCE_DIR; | |
23 else | |
24 ./bjam address-model=64 cflags=-fPIC cxxflags=-fPIC install --prefix=$INSTALL_DIR/boost/ -sBZIP2_INCLUDE=$BZLIB_INCLUDE_DIR -sBZIP2_LIB=$BZLIB_LIB_DIR -sBZIP2_SOURCE=$BZLIB_SOURCE_DIR; | |
25 fi; | |
26 </action> | |
27 <action type="set_environment"> | |
28 <environment_variable action="set_to" name="BOOST_ROOT_DIR">$INSTALL_DIR/boost</environment_variable> | |
29 <environment_variable action="append_to" name="LD_LIBRARY_PATH">$INSTALL_DIR/boost/lib/</environment_variable> | |
30 </action> | |
31 </actions> | |
32 </install> | |
33 <readme> | |
34 Compiling boost requires a C++ compiler (typically gcc). | |
35 You can access the boost root directory through the $BOOST_ROOT_DIR system variable. All modules will be build. | |
36 Development of that wrapper happens in https://github.com/bgruening/galaxytools/tree/master/orphan_tool_dependencies/. | |
37 </readme> | |
38 </package> | |
39 </tool_dependency> |