view tool_dependencies.xml @ 1:72e2049fe7e5 draft default tip

Uploaded
author iuc
date Thu, 12 Feb 2015 11:06:59 -0500
parents dcb66d63fc07
children
line wrap: on
line source

<?xml version="1.0"?>
<tool_dependency>
    <package name="bison" version="3.0">
        <install version="1.0">
            <actions>
                <action type="download_by_url">ftp://ftp.gnu.org/gnu/bison/bison-3.0.tar.gz</action>
                <action type="autoconf" />
                <action type="set_environment">
                    <environment_variable name="LD_LIBRARY_PATH" action="prepend_to">$INSTALL_DIR/lib</environment_variable>
                    <environment_variable name="BISON_ROOT_PATH" action="set_to">$INSTALL_DIR</environment_variable>
                    <environment_variable name="C_INCLUDE_PATH" action="prepend_to">$INSTALL_DIR/include</environment_variable>
                    <environment_variable name="CPLUS_INCLUDE_PATH" action="prepend_to">$INSTALL_DIR/include</environment_variable>
                </action>
            </actions>
        </install>
        <readme>
            Bison is a general-purpose parser generator that converts an annotated context-free grammar into a deterministic LR or
            generalized LR (GLR) parser employing LALR(1) parser tables. As an experimental feature, Bison can also generate IELR(1) or canonical LR(1) parser tables.
            Once you are proficient with Bison, you can use it to develop a wide range of language parsers, from those used in simple desk calculators to complex programming languages.

            http://www.gnu.org/software/bison/
        </readme>
    </package>
</tool_dependency>