1use Module::Build;
2my $build = Module::Build->new
3      ( module_name    => 'Lingua::Stem',
4        dist_author    => 'Jerilyn Franz <cpan@jerilyn.info>',
5        dist_abstract  => 'Stemming of words in various languages',
6        license        => 'perl_5',
7        requires       => {
8                                    'perl' => '5.006',
9                                 'warnings'=> 0,
10                                    'Carp' => 0,
11              'Lingua::Stem::Snowball::No' => '1.00',
12              'Lingua::Stem::Snowball::Se' => '1.01',
13              'Lingua::Stem::Snowball::Da' => '1.01',
14                        'Lingua::Stem::Fr' => '0.02',
15                        'Lingua::Stem::It' => 0,
16                        'Lingua::Stem::Ru' => 0,
17                     'Lingua::PT::Stemmer' => 0,
18                     'Lingua::GL::Stemmer' => 0,
19                            'Text::German' => 0,
20        },
21        test_requires       => {
22                                    'perl' => '5.006',
23                                 'warnings'=> 0,
24                                    'Carp' => 0,
25              'Lingua::Stem::Snowball::No' => '1.00',
26              'Lingua::Stem::Snowball::Se' => '1.01',
27              'Lingua::Stem::Snowball::Da' => '1.01',
28                        'Lingua::Stem::Fr' => '0.02',
29                        'Lingua::Stem::It' => 0,
30                        'Lingua::Stem::Ru' => 0,
31                     'Lingua::PT::Stemmer' => 0,
32                     'Lingua::GL::Stemmer' => 0,
33                            'Text::German' => 0,
34        },
35        meta_merge => {
36          'meta-spec' => { version => 2 },
37           resources => {
38              bugtracker => {
39                   web  => 'https://github.com/JerilynFranz/perl-Lingua-Stem/issues',
40               },
41               homepage => 'https://github.com/JerilynFranz/perl-Lingua-Stem',
42               license  => ['http://dev.perl.org/licenses/'],
43               repository => {
44                   type => 'git',
45                   url  => 'https://github.com/JerilynFranz/perl-Lingua-Stem.git',
46                   web  => 'https://github.com/JerilynFranz/perl-Lingua-Stem',
47               },
48            },
49        },
50        build_requires => { },
51      )->create_build_script;
52