The module looks for a file /etc/perl5lib.pm (or %windir%/perl5lib.pm) and reads in a array ref of directories from that file.
It then massages @INC to include all relevant directories under those paths using hints from Config.pm about sitelib/privlib/archlib/vendorlib etc. without them needing to be explicitly declared.
You can download the file from here - it is too hackish to upload to CPAN as a module.
The /etc/perl5lib.pm file is in Data::Dumper format - it looks like this:
$VAR1=[ '/opt/project1', '/opt/project2', .. ];
Then to include all the above directories *and* any relevant vendorlib/sitelib/archlib etc directories under them in which modules may have been installed, run
perl -I/path/to/perl5lib.pm -Mperl5lib script.pl
Or include in your script:
#!/bin/perl use lib '/path/to/perl5lib.pm', use perl5lib
I did not know about the perl Makefile.PL PREFIX=<path> LIB=<path> option mentioned above though - that looks like a better idea if the modules are not already installed.
In reply to Re: Installing modules locally
by aspeer
in thread Installing modules locally
by szabgab
For: | Use: | ||
& | & | ||
< | < | ||
> | > | ||
[ | [ | ||
] | ] |