http://www.perlmonks.org?node_id=969209

Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:

Hello, I developed a custom Perl module.
I wouldn't like to put things like:

use lib qw(/dir01/dir02/dir03/perlLibsRepo); use myPerlModule;

in all the pages that use the module.

The best thing would be to "call" the module as any other module installed with cpan:

use myPerlModule;

Is there any way to make cpan "register" my module even if it's not available in CPAN but only in the server's filesystem?

Thank you very much
Regards
P_Newby