view tool_dependencies.xml @ 0:631dfde45073 draft default tip

First tool-shed public version
author gordon
date Tue, 09 Oct 2012 18:48:06 -0400
parents
children
line wrap: on
line source

<?xml version="1.0"?>
<tool_dependency>
    <package name="gnu_coreutils" version="8.19">
        <install version="1.0">
            <actions>
		    <!-- Why download from my server? because the Official coreutil repository
		         only has '.xz' files (LZMA compression) for recent versions, Python's "tarfile" can't handle them,
                         and most servers don't have a recent enough 'tar' program that can extract them.
                         This file is a bzip2 repackged version of http://ftp.gnu.org/gnu/coreutils/coreutils-8.19.tar.xz -->
	        <action type="download_by_url">http://cancan.cshl.edu/labmembers/gordon/files/coreutils-8.19.tar.bz2</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>

    <package name="gnu_awk" version="4.0.1">
        <install version="1.0">
            <actions>
	        <action type="download_by_url">http://ftp.gnu.org/gnu/gawk/gawk-4.0.1.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 awk requires a C compiler.
        </readme>
    </package>

    <package name="gnu_sed" version="4.2-sandbox">
        <install version="1.0">
            <actions>
		<!-- This is a patched version of GNU sed, which supports the "sandbox" option.
			It is equivalent GNU sed 4.2 (ftp://ftp.gnu.org/gnu/sed/sed-4.2.tar.gz)
			with the following patch:
			http://cancan.cshl.edu/labmembers/gordon/files/sed-4.2-sandbox.patch
		-->
	        <action type="download_by_url">http://cancan.cshl.edu/labmembers/gordon/files/sed-4.2-sandbox.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 sed requires a C compiler.
        </readme>
    </package>

</tool_dependency>