changeset 0:c7f8a12d8176

Uploaded
author bgruening
date Sat, 27 Apr 2013 13:09:10 -0400
parents
children 0275ed826890
files tool_dependencies.xml
diffstat 1 files changed, 45 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_dependencies.xml	Sat Apr 27 13:09:10 2013 -0400
@@ -0,0 +1,45 @@
+<tool_dependency>
+    <package name="numpy" version="1.7.1">
+        <repository toolshed="http://testtoolshed.g2.bx.psu.edu/" name="package_numpy_1_7" owner="bgruening" changeset_revision="c3041382815c" prior_installation_required="True" />
+    </package>
+    <package name="boost" version="1.53.0">
+        <repository toolshed="http://testtoolshed.g2.bx.psu.edu/" name="package_boost_1_53" owner="bgruening" changeset_revision="f4209b50c801" prior_installation_required="True" />
+    </package>
+
+    <package name="rdkit" version="2013_03_1">
+        <install version="1.0">
+            <actions>
+                <!-- first action is always downloading -->
+                <action type="download_by_url">http://rdkit.googlecode.com/files/RDKit_2013_03_1.tgz</action>
+
+                <!-- populate the environment variables from the dependend repos -->
+                <action type="set_environment_for_install">
+                    <repository toolshed="http://testtoolshed.g2.bx.psu.edu/" name="package_numpy_1_7" owner="bgruening" changeset_revision="c3041382815c">
+                        <package name="numpy" version="1.7.1" />
+                    </repository>
+                </action>
+                <action type="set_environment_for_install">
+                    <repository toolshed="http://testtoolshed.g2.bx.psu.edu/" name="package_boost_1_53" owner="bgruening" changeset_revision="f4209b50c801">
+                        <package name="boost" version="1.53.0" />
+                    </repository>
+                </action>
+
+                <action type="shell_command">export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:`pwd`/lib/ &amp;&amp;
+                    export PYTHONPATH=$PYTHONPATH:`pwd`/ &amp;&amp;
+                    mkdir build &amp;&amp;
+                    cd build &amp;&amp;
+                    cmake .. -DBOOST_ROOT=$BOOST_ROOT_DIR -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR/rdkit/ -DRDK_INSTALL_INTREE=OFF</action>
+                <action type="shell_command">cd ./build &amp;&amp; make </action>
+                <action type="shell_command">cd ./build &amp;&amp; make install</action>
+
+                <action type="set_environment">
+                    <environment_variable name="RDBASE" action="set_to">$INSTALL_DIR/rdkit</environment_variable>
+                    <environment_variable name="LD_LIBRARY_PATH" action="append_to">$INSTALL_DIR/rdkit</environment_variable>
+                    <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/rdkit/bin</environment_variable>
+                    <environment_variable name="PYTHONPATH" action="prepend_to">$INSTALL_DIR/rdkit/lib/</environment_variable>
+                </action>
+            </actions>
+        </install>
+        <readme>Compiling rdkit requires cmake, python headers, sqlite3, flex and bison.</readme>
+    </package>
+</tool_dependency>