skip subtests if Test::More is too old
[perl/list-index.git] / Build.PL
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4
5 use Module::Build;
6
7 Module::Build->new(
8         module_name => 'List::Index',
9         dynamic_config => 0,
10         license     => 'perl',
11         requires => {
12                 'perl' => '5.010',
13         },
14         build_requires => {
15                 'Test::NoWarnings' => 0,
16                 'List::MoreUtils' => 0,
17         },
18         meta_merge => {
19                 resources => {
20                         repository => 'git://git.shiar.nl/list-index',
21                 },
22         },
23 )->create_build_script;
24