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
|
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Catmandu::Cmd::repl',
license => 'perl',
dist_author => [
'Nicolas Steenlant <nicolas.steenlant@ugent.be>'
],
dist_version_from => 'lib/Catmandu/Cmd/repl.pm',
build_requires => {
'Software::License' => 0,
'Test::Exception' => 0,
'Test::More' => 0,
},
requires => {
'perl' => '5.10.0',
'Catmandu' => '0.01',
'Devel::REPL' => '1.003012',
},
add_to_cleanup => [qw(
Catmandu-Cmd-repl-*
)],
create_makefile_pl => 'traditional',
create_license => 1,
);
$builder->create_build_script;
|