Mercurial > repos > iuc > package_perl_5_18
changeset 5:d905bb415eca draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/packages/package_perl_5_18 commit 55b5863db6c3e6cf443917117ec362a8daad8122
author | iuc |
---|---|
date | Sun, 14 Feb 2016 09:19:49 -0500 |
parents | 8b3509930a44 |
children | 03f5951a9855 |
files | tool_dependencies.xml |
diffstat | 1 files changed, 9 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/tool_dependencies.xml Fri Sep 25 09:17:12 2015 -0400 +++ b/tool_dependencies.xml Sun Feb 14 09:19:49 2016 -0500 @@ -7,17 +7,15 @@ <install version="1.0"> <actions> <!-- install perl --> - <action type="download_by_url">http://www.cpan.org/src/5.0/perl-5.18.1.tar.gz</action> - <!-- get coreutils in path, to avoid using system's mktemp, which might have differing syntax --> - <action type="set_environment_for_install"> - <repository changeset_revision="ac64dfe4b1fb" name="package_gnu_coreutils_8_22" owner="iuc" toolshed="https://toolshed.g2.bx.psu.edu"> - <package name="gnu_coreutils" version="8.22" /> - </repository> + <action sha256sum="655e11a8ffba8853efcdce568a142c232600ed120ac24aaebb4e6efe74e85b2b" type="download_by_url"> + https://depot.galaxyproject.org/software/perl/perl_5.18_src_all.tar.gz </action> <action type="shell_command">./Configure -des -Dprefix=$INSTALL_DIR -Dstartperl='#!/usr/bin/env perl'</action> <action type="make_install" /> <action type="change_directory">..</action> - <action type="download_file">http://www.cpan.org/authors/id/A/AP/APEIRON/local-lib-1.008009.tar.gz</action> + <action sha256sum="5c69adb47ab828aa3e8b5be89b88cd49c6a0d0dae2e8b3bca17a9ce699190e7b" type="download_file"> + http://www.cpan.org/authors/id/A/AP/APEIRON/local-lib-1.008009.tar.gz + </action> <action type="shell_command">tar xfvz local-lib-1.008009.tar.gz</action> <action type="change_directory">local-lib-1.008009</action> <!-- TODO: Here we need to use the new installed perl binary --> @@ -28,7 +26,9 @@ <action type="shell_command">export PATH=$INSTALL_DIR/bin/:$PATH; eval $(perl -I$INSTALL_DIR/local-lib/lib/perl5 -Mlocal::lib=$INSTALL_DIR/local-lib)</action> <action type="change_directory">..</action> <!-- install cpanminus into our new perl environment --> - <action type="download_file">https://raw.github.com/miyagawa/cpanminus/c0c88f71118ecec334d62ba280e883933e7a6d39/cpanm</action> + <action sha256sum="0b67f5c721259d4185bacdcbc87b835821246fe8ac7ad980d3b1a18ecdd10ff6" type="download_file"> + https://raw.github.com/miyagawa/cpanminus/c0c88f71118ecec334d62ba280e883933e7a6d39/cpanm + </action> <!-- prepending means that the new install perl binary will be used after the pipe --> <action type="shell_command">if [ -d "$TMP_WORK_DIR" ] ; then export HOME=$TMP_WORK_DIR ; else export HOME=`mktemp -d` ; fi ; unset PERL_MB_OPT PERL_MM_OPT ; export PERL5LIB=$INSTALL_DIR/lib/perl5/:$PERL5LIB ; export PATH=$INSTALL_DIR/bin/:$PATH ; cat cpanm | perl - App::cpanminus</action> <action type="shell_command">LC_ALL=C sed -i.bak -e 's|#!$INSTALL_DIR/bin/|#!/usr/bin/env |' $INSTALL_DIR/bin/*</action> @@ -42,7 +42,7 @@ </install> <readme> Perl 5 is a highly capable, feature-rich programming language with over 25 years of development. - http://www.perl.org/ + https://www.perl.org/ This repository contains local-lib and cpanm in addition. It is recommended to use something like "cpanm --local-lib=$PERL_ROOT_DIR XML::Parser" to install additional perl modules.