| 12
 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
 31
 32
 33
 34
 35
 36
 37
 38
 
 | use strict;
use warnings;
use Module::Build;
sub YES { 1 };
sub NO  { 0 };
my $builder = Module::Build->new(
    module_name          => 'Lingua::Stem::Snowball::Se',
    dist_name            => 'Snowball-Swedish',
    license              => 'perl',
    dist_author          => 'Ask Solem <ASKSH@cpan.org>',
    dist_version_from    => 'lib/Lingua/Stem/Snowball/Se.pm',
    all_from             => 'lib/Lingua/Stem/Snowball/Se.pm',
    dist_abstract        => 'Porters stemming algorithm for swedish.',
    dynamic_config       => NO,
    sign                 => NO, # asksh: have to find out why my signature fails.
    recursive_test_files => YES,
    build_requires       => {
        'Test::More'            => 0.42,
    },
    pod_files            => {
    },
    add_to_cleanup       => [ qw(
        a.out
        test.pl
        test.c
        test.cpp
        test.m
        *.swp
        .gdb_history
        install.cache
        t/cache
    ) ],
);
$builder->create_build_script( );
 |