in reply to Re: How to install self written modules
in thread How to install self written modules
Howto include Test1.pm ?use 5.008007; use ExtUtils::MakeMaker; # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. WriteMakefile( NAME => 'ABC::Test', VERSION_FROM => 'lib/ABC/Test.pm', # finds $VERSION PREREQ_PM => {}, # e.g., Module::Name => 1.1 ($] >= 5.005 ? ## Add these new keywords supported since 5.005 (ABSTRACT_FROM => 'lib/ABC/Test.pm', # retrieve abstract from m +odule AUTHOR => 'A. U. Thor <calje@knmi.nl>') : ()), );
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: How to install self written modules
by rinceWind (Monsignor) on Mar 06, 2006 at 10:05 UTC |