in reply to Perl module installation as NON-ROOT

cpan FAQ:
You need to set PREFIX and LIB when you run the Makefile.PL.

LIB is where the module files will go
PREFIX is the stub directory for everything else.

For example:
shell$ perl Makefile.PL LIB=/home/foobar/mylib PREFIX=/home/foobar/myl +ib

good luck