1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
use 5.006;
use strict;
use ExtUtils::MakeMaker;
eval "use Test::Manifest 1.21";
WriteMakefile(
'NAME' => 'ConfigReader::Simple',
'VERSION_FROM' => 'lib/ConfigReader/Simple.pm',
'ABSTRACT' => 'Simple configuration file parser',
'LICENSE' => 'perl',
'AUTHOR' => 'brian d foy <bdfoy@cpan.org>',
'PREREQ_PM' => {
'Test::Warn' => '0',
'Test::Output' => '0',
},
(
$ExtUtils::MakeMaker::VERSION ge '6.48' ?
(
MIN_PERL_VERSION => 5.006,
META_MERGE => {
resources => {
repository => 'https://github.com/briandfoy/ConfigReader-Simple',
},
keywords => ['config'],
},
)
:
()
),
clean => { FILES => "ConfigReader-Simple-*" },
);
|