|
use lib File::Spec->catdir(File::Spec->curdir(), "inc" ); my $build = Test::Run::Builder->new(
'module_name' => "Dist::Man" ,
'requires' =>
{
'ExtUtils::Command' => 0,
'File::Spec' => 0,
'Getopt::Long' => 0,
'Pod::Usage' => 0,
'Test::More' => 0,
'perl' => "5.8.1" ,
},
'license' => "perl" ,
meta_merge =>
{
resources =>
{
},
keywords =>
[
"automate" ,
"begin" ,
"cpan" ,
"cpan-distro" ,
"cpan package" ,
"cpan-package" ,
"dist" ,
"distribution" ,
"distro" ,
"generate" ,
"man" ,
"manager" ,
"module" ,
"package" ,
"scaffolding" ,
"starter" ,
],
},
create_makefile_pl => 'traditional' ,
script_files => [ 'bin/pl-dist-man' ],
);
$build ->create_build_script;
|