CC: | better Makefile.PL |
--
Alexandr Ciornii, http://chorny.net
Subject: | Makefile.PL |
use 5.008;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'Number::Format',
'VERSION_FROM' => 'Format.pm', # finds $VERSION
PREREQ_PM => {
'Test::More' => 0,
},
($ExtUtils::MakeMaker::VERSION ge '6.31'?
('LICENSE' => 'perl', ) : ()),
AUTHOR => 'William R. Ward <wrw@'.'cpan.org>',
ABSTRACT => 'formatting numbers',
);