18 lines
654 B
Perl
18 lines
654 B
Perl
use ExtUtils::MakeMaker;
|
|
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
|
|
# the contents of the Makefile that is written.
|
|
|
|
WriteMakefile(
|
|
'NAME' => 'mwx',
|
|
'VERSION_FROM' => 'mwx.pm', # finds $VERSION
|
|
'PREREQ_PM' => { Net::SMTP => 0,
|
|
MD5 => 0,
|
|
Net::NIS => 0,
|
|
Math::BigInt => 0,
|
|
Time::HiRes => 0,
|
|
Term::ReadKey => 0},
|
|
($] >= 5.005 ? ## Add these new keywords supported since 5.005
|
|
(ABSTRACT_FROM => 'mwx.pm', # retrieve abstract from module
|
|
AUTHOR => 'M.Wesemann <mwx@gmx.de>') : ()),
|
|
);
|