changeset 0:9c5da36668d3

Uploaded
author bgruening
date Wed, 24 Apr 2013 18:33:47 -0400
parents
children 97a7d116834b
files tool_dependencies.xml
diffstat 1 files changed, 17 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_dependencies.xml	Wed Apr 24 18:33:47 2013 -0400
@@ -0,0 +1,17 @@
+<tool_dependency>
+    <package name="boost" version="1.53.0">
+        <install version="1.0">
+            <actions>
+                <action type="download_by_url">http://downloads.sourceforge.net/project/boost/boost/1.53.0/boost_1_53_0.tar.bz2</action>
+                <action type="shell_command">../bootstrap.sh --with-libraries=python,regex</action>
+                <!-- try to set the right architecture with uname -m -->
+                <action type="shell_command">if [ $(uname -m) == 'x86_64' ]; then ./bjam install --prefix=$INSTALL_DIR/boost/; else ./bjam address-model=64 cflags=-fPIC cxxflags=-fPIC install --prefix=$INSTALL_DIR/boost/; fi;</action>
+
+                <action type="set_environment">
+                    <environment_variable name="BOOST_ROOT_DIR" action="set_to">$INSTALL_DIR/boost/</environment_variable>
+                </action>
+            </actions>
+        </install>
+        <readme>Compiling freetype requires a C++ compiler (typically gcc). You can access the boost root directory through the $BOOST_ROOT_DIR system variable.</readme>
+    </package>
+</tool_dependency>