view tool_dependencies.xml @ 3:7887e4ac4c0d draft

Uploaded
author iuc
date Fri, 14 Nov 2014 05:33:56 -0500
parents 2fd4eb971ba5
children bff3f66adff2
line wrap: on
line source

<tool_dependency>
    <package name="graphicsmagick" version="1.3.18">
        <install version="1.0">
            <actions>
                <action type="download_by_url">http://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.18/GraphicsMagick-1.3.18.tar.gz</action>

                <action type="shell_command">./configure --prefix=$INSTALL_DIR/gmagick/ --enable-shared=yes</action>
                <action type="shell_command">make</action>
                <action type="shell_command">make install</action>
                <!-- drop-in replacement for imagemagick's convert -->
                <action type="shell_command">echo -e '#!/usr/bin/env bash\ngm convert $@' > $INSTALL_DIR/gmagick/bin/convert</action>
                <action type="chmod">
                    <file mode="+x">$INSTALL_DIR/gmagick/bin/convert</file>
                </action>

                <action type="set_environment">
                    <environment_variable name="GRAPHICSMAGICK_ROOT_DIR" action="set_to">$INSTALL_DIR/gmagick</environment_variable>
                    <environment_variable name="PATH" action="append_to">$INSTALL_DIR/gmagick/bin</environment_variable>
                </action>
            </actions>
        </install>
        <readme>Compiling GraphicsMagick requires a C compiler (typically gcc). You can access the GraphicsMagick root directory (including lib/, include/ and bin/) through the $GRAPHICSMAGICK_ROOT_DIR system variable.</readme>
    </package>
</tool_dependency>