I was wondering if anyone knows how to install Perl modules using:
PHP Code:
perl -MCPAN -e "install 'Some::Module'"
or Bundles into a custom directories. I know that you can install the individual module using:
PHP Code:
perl Makefile.PL LIB=/my/dir/perllib
INSTALLMAN1DIR=/my/dir/man/man1
INSTALLMAN3DIR=/my/dir/man/man3
INSTALLBIN=/my/dir/bin
INSTALLSCRIPT=/my/dir/scripts
but how would I accomplish this with -MCPAN -e?