comparison tool_dependencies.xml @ 0:34b039b3943b draft

Imported from capsule None
author iuc
date Sat, 01 Mar 2014 14:10:55 -0500
parents
children 28865aa39fbb
comparison
equal deleted inserted replaced
-1:000000000000 0:34b039b3943b
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>
8 <action type="shell_command">./Configure -des -Dprefix=$INSTALL_DIR</action>
9 <action type="make_install" />
10
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>
14 <!-- TODO: Here we need to use the new installed perl binary -->
15 <action type="shell_command">$INSTALL_DIR/bin/perl Makefile.PL --bootstrap=$INSTALL_DIR/local-lib/ --no-manpages</action>
16 <action type="shell_command">make install</action>
17 <action type="shell_command">eval $($INSTALL_DIR/bin/perl -I$INSTALL_DIR/local-lib/perl5 -Mlocal::lib=$INSTALL_DIR/local-lib)</action>
18
19 <!-- install cpanminus into our new perl environment -->
20 <action type="download_file">https://raw.github.com/miyagawa/cpanminus/c0c88f71118ecec334d62ba280e883933e7a6d39/cpanm</action>
21 <!-- prepanding means that the new install perl binary will be used after the pipe -->
22 <action type="shell_command">export PERL5LIB=$INSTALL_DIR/lib/perl5/:$PERL5LIB ; export PATH=$INSTALL_DIR/bin/:$PATH ; cat cpanm | perl - App::cpanminus</action>
23
24 <action type="set_environment">
25 <environment_variable name="PATH" action="prepend_to">$INSTALL_DIR/bin</environment_variable>
26 <environment_variable name="PERL5LIB" action="prepend_to">$INSTALL_DIR/lib/perl5</environment_variable>
27 <environment_variable name="PERL_ROOT_DIR" action="set_to">$INSTALL_DIR</environment_variable>
28 <environment_variable name="PERL_LOCALLIB_DIR" action="set_to">$INSTALL_DIR/local-lib</environment_variable>
29 </action>
30 </actions>
31 </install>
32 <readme>
33 Perl 5 is a highly capable, feature-rich programming language with over 25 years of development.
34 http://www.perl.org/
35
36 This repository contains local-lib and cpanm in addition.
37 It is recommended to use something like "cpanm --local-lib=$PERL_LOCALLIB_DIR XML::Parser" to install additional perl modules.
38 </readme>
39 </package>
40 </tool_dependency>