~ubuntu-branches/ubuntu/hardy/liblingua-stem-perl/hardy

« back to all changes in this revision

Viewing changes to Build.PL

  • Committer: Bazaar Package Importer
  • Author(s): Dominic Hargreaves
  • Date: 2006-08-23 20:10:09 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20060823201009-a35rbiz7d292nlko
Tags: 0.82-1
* New upstream release
* Update Standards-Version (no changes)

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use Module::Build;
 
2
my $build = Module::Build->new
 
3
      ( module_name    => 'Lingua::Stem',
 
4
        dist_author    => 'Benjamin Franz <snowhare@nihongo.org>',
 
5
        dist_abstract  => 'Stemming of words in various languages',
 
6
        license        => 'perl',
 
7
        requires       => {
 
8
                                    'Carp' => 0,                      
 
9
              'Lingua::Stem::Snowball::No' => '1.00',
 
10
              'Lingua::Stem::Snowball::Se' => '1.01',
 
11
              'Lingua::Stem::Snowball::Da' => '1.01',
 
12
                        'Lingua::Stem::Fr' => '0.02',
 
13
                        'Lingua::Stem::It' => 0,
 
14
                        'Lingua::Stem::Ru' => 0,
 
15
                     'Lingua::PT::Stemmer' => 0,
 
16
                     'Lingua::GL::Stemmer' => 0,
 
17
                            'Text::German' => 0,
 
18
        },
 
19
        build_requires => { },
 
20
      )->create_build_script;