changeset 0:cf0a4294fcb7 draft

Uploaded
author fubar
date Wed, 28 Aug 2013 00:34:37 -0400
parents
children f2f6ebdd6801
files tool_dependencies.xml
diffstat 1 files changed, 19 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_dependencies.xml	Wed Aug 28 00:34:37 2013 -0400
@@ -0,0 +1,19 @@
+<?xml version="1.0"?>
+<tool_dependency>
+    <package name="cython" version="0.19.1">
+        <install version="1.0">
+            <actions>
+                <action type="download_by_url">http://cython.org/release/Cython-0.19.1.tar.gz</action>
+                <action type="make_directory">$INSTALL_DIR/lib/python</action> <!-- Not sure why these must be made apriori, but install fails otherwise -->
+                <action type="make_directory">$INSTALL_DIR/lib64/python</action> <!-- Not sure why these must be made apriori, but install fails otherwise -->
+                <action type="shell_command">export PYTHONPATH=$PYTHONPATH:$INSTALL_DIR/lib/python:$INSTALL_DIR/lib64/python &amp;&amp; python setup.py install</action>
+                <action type="set_environment">
+                    <environment_variable action="append_to" name="PYTHONPATH">$INSTALL_DIR/lib/python:$INSTALL_DIR/lib64/python</environment_variable>
+                </action>
+            </actions>
+        </install>
+        <readme>
+            Installation of Cython requires a compiler and stuff so you may need build-essentials or equivalent installed
+        </readme>
+    </package>
+</tool_dependency>