in reply to Re: Question on installing modules in local dir using PREFIX
in thread Question on installing modules in local dir using PREFIX
use 5.010000; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'XXXAUTO::PROVISION::Command', VERSION_FROM => 'lib/XXXAUTO/PROVISION/Command.pm', # finds $ +VERSION PREREQ_PM => {}, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/XXXAUTO/PROVISION/Command.pm', # retriev +e abstract from module AUTHOR => 'XXX Auto Grp <auto@localdomain>') : ()), );
|
|---|