1use Module::Build;
2my $build = Module::Build->new(
3    module_name => 'Array::Compare',
4    license => 'perl',
5    requires => {
6        perl            => '5.10.0',
7        Carp            => 0,
8        Moo             => 0,
9        Types::Standard => 0,
10    },
11    build_requires => {
12        Test::NoWarnings => 0,
13    },
14    build_recommends => {
15        Test::Pod           => 0,
16        Test::Pod::Coverage => 0,
17    },
18    meta_merge => {
19        'meta-spec' => { version => 2 },
20        resources  => {
21            repository => {
22                type => 'git',
23                url  => 'https://github.com/davorg/array-compare.git',
24                web  => 'https://github.com/davorg/array-compare',
25            },
26            bugtracker => {
27                web  => 'https://github.com/davorg/array-compare/issues',
28            },
29        },
30    },
31    create_makefile_pl => 'traditional',
32);
33
34$build->create_build_script;
35