Well you can automate the compilation of perl modules also you can put them in a separate location not to interfere with local modules.
perl Makefile.PL LIBS=$HOME/.perl PREFIX=$HOME/.perl && make && make install
To use the libraries you only set the PERL5LIB like:
PERL5LIB=$HOME/.perl
or Include the following in the header of your script:
BEGIN { push @INC, "$ENV{'HOME'}/.perl"; }
In reply to Re: Deploying Multi-Platform Perl Solutions
by mickep76
in thread Deploying Multi-Platform Perl Solutions
by amearse
| For: | Use: | ||
| & | & | ||
| < | < | ||
| > | > | ||
| [ | [ | ||
| ] | ] |