comparison tool_dependencies.xml @ 3:7887e4ac4c0d draft

Uploaded
author iuc
date Fri, 14 Nov 2014 05:33:56 -0500
parents 2fd4eb971ba5
children bff3f66adff2
comparison
equal deleted inserted replaced
2:2fd4eb971ba5 3:7887e4ac4c0d
5 <action type="download_by_url">http://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.18/GraphicsMagick-1.3.18.tar.gz</action> 5 <action type="download_by_url">http://sourceforge.net/projects/graphicsmagick/files/graphicsmagick/1.3.18/GraphicsMagick-1.3.18.tar.gz</action>
6 6
7 <action type="shell_command">./configure --prefix=$INSTALL_DIR/gmagick/ --enable-shared=yes</action> 7 <action type="shell_command">./configure --prefix=$INSTALL_DIR/gmagick/ --enable-shared=yes</action>
8 <action type="shell_command">make</action> 8 <action type="shell_command">make</action>
9 <action type="shell_command">make install</action> 9 <action type="shell_command">make install</action>
10 <!-- drop-in replacement for imagemagick's convert -->
11 <action type="shell_command">echo -e '#!/usr/bin/env bash\ngm convert $@' > $INSTALL_DIR/gmagick/bin/convert</action>
12 <action type="chmod">
13 <file mode="+x">$INSTALL_DIR/gmagick/bin/convert</file>
14 </action>
10 15
11 <action type="set_environment"> 16 <action type="set_environment">
12 <environment_variable name="GRAPHICSMAGICK_ROOT_DIR" action="set_to">$INSTALL_DIR/gmagick</environment_variable> 17 <environment_variable name="GRAPHICSMAGICK_ROOT_DIR" action="set_to">$INSTALL_DIR/gmagick</environment_variable>
13 <environment_variable name="PATH" action="append_to">$INSTALL_DIR/gmagick/bin</environment_variable> 18 <environment_variable name="PATH" action="append_to">$INSTALL_DIR/gmagick/bin</environment_variable>
14 </action> 19 </action>