changeset 0:cacf2fc5097f draft

initial uploaded
author bgruening
date Sat, 31 Aug 2013 05:38:13 -0400
parents
children 5f6c9b57f32b
files tool_dependencies.xml
diffstat 1 files changed, 23 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_dependencies.xml	Sat Aug 31 05:38:13 2013 -0400
@@ -0,0 +1,23 @@
+<?xml version="1.0"?>
+<tool_dependency>
+    <package name="gnu_coreutils" version="8.21">
+        <install version="1.0">
+            <actions>
+            <!--
+                repacked version of http://ftp.gnu.org/gnu/coreutils/coreutils-8.21.tar.xz,
+                because tarfile did not understand LZMA compression
+            -->
+            <action type="download_by_url">https://github.com/bgruening/download_store/raw/master/GNU/coreutils-8.21.tar.gz</action>
+            <action type="shell_command">./configure --prefix=$INSTALL_DIR</action>
+                <action type="shell_command">make</action>
+                <action type="shell_command">make install</action>
+                <action type="set_environment">
+                    <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable>
+                </action>
+            </actions>
+        </install>
+        <readme>
+            Compiling GNU coreutils requires a C compiler.
+        </readme>
+    </package>
+</tool_dependency>