| 
0
 | 
     1 <tool_dependency>
 | 
| 
 | 
     2     <package name="perl" version="5.18.1">
 | 
| 
 | 
     3         <install version="1.0">
 | 
| 
 | 
     4             <actions>
 | 
| 
 | 
     5 
 | 
| 
 | 
     6                 <!-- install perl -->
 | 
| 
 | 
     7                 <action type="download_by_url">http://www.cpan.org/src/5.0/perl-5.18.1.tar.gz</action>
 | 
| 
5
 | 
     8                 <action type="shell_command">./Configure -des -Dprefix=$INSTALL_DIR</action>
 | 
| 
 | 
     9                 <action type="make_install" />
 | 
| 
10
 | 
    10                 <action type="change_directory">..</action>
 | 
| 
0
 | 
    11                 <action type="download_file">http://www.cpan.org/authors/id/A/AP/APEIRON/local-lib-1.008009.tar.gz</action>
 | 
| 
 | 
    12                 <action type="shell_command">tar xfvz local-lib-1.008009.tar.gz</action>
 | 
| 
 | 
    13                 <action type="change_directory">local-lib-1.008009</action>
 | 
| 
5
 | 
    14                 <!-- TODO: Here we need to use the new installed perl binary -->
 | 
| 
12
 | 
    15                 <action type="shell_command">$INSTALL_DIR/bin/perl Makefile.PL --bootstrap=$INSTALL_DIR --no-manpages</action>
 | 
| 
0
 | 
    16                 <action type="shell_command">make install</action>
 | 
| 
12
 | 
    17                 <action type="shell_command">eval $(perl -I$INSTALL_DIR/lib/perl5 -Mlocal::lib=$INSTALL_DIR)</action>
 | 
| 
0
 | 
    18 
 | 
| 
4
 | 
    19                 <!-- install cpanminus into our new perl environment -->
 | 
| 
12
 | 
    20                 <action type="change_directory">..</action>
 | 
| 
0
 | 
    21                 <action type="download_file">https://raw.github.com/miyagawa/cpanminus/c0c88f71118ecec334d62ba280e883933e7a6d39/cpanm</action>
 | 
| 
5
 | 
    22                 <!-- prepanding means that the new install perl binary will be used after the pipe -->
 | 
| 
4
 | 
    23                 <action type="shell_command">export PERL5LIB=$INSTALL_DIR/lib/perl5/:$PERL5LIB ; export PATH=$INSTALL_DIR/bin/:$PATH ; cat cpanm | perl - App::cpanminus</action>
 | 
| 
 | 
    24 
 | 
| 
9
 | 
    25                 <!--
 | 
| 
 | 
    26                 <action type="chmod">
 | 
| 
 | 
    27                     <file mode="750">cpanm</file>
 | 
| 
 | 
    28                 </action>
 | 
| 
 | 
    29                 <action type="move_file">
 | 
| 
 | 
    30                     <source>cpanm</source>
 | 
| 
 | 
    31                     <destination>$INSTALL_DIR/bin/</destination>
 | 
| 
 | 
    32                 </action>
 | 
| 
 | 
    33                 -->
 | 
| 
0
 | 
    34                 <action type="set_environment">
 | 
| 
 | 
    35                     <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable>
 | 
| 
 | 
    36                     <environment_variable name="PERL5LIB" action="prepend_to">$INSTALL_DIR/lib/perl5</environment_variable>
 | 
| 
7
 | 
    37                     <environment_variable name="PERL_ROOT_DIR" action="set_to">$INSTALL_DIR</environment_variable>
 | 
| 
0
 | 
    38                 </action>
 | 
| 
 | 
    39             </actions>
 | 
| 
 | 
    40         </install>
 | 
| 
 | 
    41         <readme>
 | 
| 
5
 | 
    42             Perl 5 is a highly capable, feature-rich programming language with over 25 years of development.
 | 
| 
 | 
    43             http://www.perl.org/
 | 
| 
 | 
    44             
 | 
| 
 | 
    45             This repository contains local-lib and cpanm in addition.
 | 
| 
9
 | 
    46             It is recommended to use something like "cpanm --local-lib=$PERL_ROOT_DIR XML::Parser" to install additional perl modules.
 | 
| 
0
 | 
    47         </readme>
 | 
| 
 | 
    48     </package>
 | 
| 
 | 
    49 </tool_dependency>
 |