# HG changeset patch
# User iuc
# Date 1421500687 18000
# Node ID 114b6af405fa841507fbe6163896ba5bce65a152
# Parent 28865aa39fbb353fd08b26d85811ce17613e999f
Uploaded
diff -r 28865aa39fbb -r 114b6af405fa tool_dependencies.xml
--- a/tool_dependencies.xml Fri Jun 06 18:35:30 2014 -0400
+++ b/tool_dependencies.xml Sat Jan 17 08:18:07 2015 -0500
@@ -5,21 +5,22 @@
http://www.cpan.org/src/5.0/perl-5.18.1.tar.gz
- ./Configure -des -Dprefix=$INSTALL_DIR
+ ./Configure -des -Dprefix=$INSTALL_DIR -Dstartperl='#!/usr/bin/env perl'
..
http://www.cpan.org/authors/id/A/AP/APEIRON/local-lib-1.008009.tar.gz
tar xfvz local-lib-1.008009.tar.gz
local-lib-1.008009
- $INSTALL_DIR/bin/perl Makefile.PL --bootstrap=$INSTALL_DIR/local-lib/ --no-manpages
+ export PATH=$INSTALL_DIR/bin/:$PATH; perl Makefile.PL --bootstrap=$INSTALL_DIR/local-lib/ --no-manpages
make install
- eval $($INSTALL_DIR/bin/perl -I$INSTALL_DIR/local-lib/perl5 -Mlocal::lib=$INSTALL_DIR/local-lib)
+ export PATH=$INSTALL_DIR/bin/:$PATH; eval $(perl -I$INSTALL_DIR/local-lib/perl5 -Mlocal::lib=$INSTALL_DIR/local-lib)
..
https://raw.github.com/miyagawa/cpanminus/c0c88f71118ecec334d62ba280e883933e7a6d39/cpanm
export PERL5LIB=$INSTALL_DIR/lib/perl5/:$PERL5LIB ; export PATH=$INSTALL_DIR/bin/:$PATH ; cat cpanm | perl - App::cpanminus
+ sed -i 's|#!$INSTALL_DIR/bin/|#!/usr/bin/env |' $INSTALL_DIR/bin/*
$INSTALL_DIR/bin
@@ -32,9 +33,9 @@
Perl 5 is a highly capable, feature-rich programming language with over 25 years of development.
http://www.perl.org/
-
+
This repository contains local-lib and cpanm in addition.
- It is recommended to use something like "cpanm --local-lib=$PERL_LOCALLIB_DIR XML::Parser" to install additional perl modules.
+ It is recommended to use something like "cpanm --local-lib=$PERL_ROOT_DIR XML::Parser" to install additional perl modules.