The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl

use 5.006;

use strict;
use warnings;
no  warnings 'syntax';

use ExtUtils::MakeMaker;

my %args = (
    NAME                 => 'Acme::CPANAuthors::European',
    VERSION_FROM         => 'lib/Acme/CPANAuthors/European.pm',
    ABSTRACT_FROM        => 'lib/Acme/CPANAuthors/European.pm',
    PREREQ_PM            => {'Acme::CPANAuthors::Register'   => 0,  
                             'Acme::CPANAuthors::Austrian'   => 0,
                             'Acme::CPANAuthors::British'    => 0,
                             'Acme::CPANAuthors::French'     => 0,
                             'Acme::CPANAuthors::German'     => 0,
                             'Acme::CPANAuthors::Icelandic'  => 0,
                             'Acme::CPANAuthors::Norwegian'  => 0,
                             'Acme::CPANAuthors::Portuguese' => 0,
                             'Acme::CPANAuthors::Russian'    => 0,
                             'Acme::CPANAuthors::Turkish'    => 0,
                             'Acme::CPANAuthors::Ukrainian'  => 0,
                             'strict'                        => 0,  
                             'warnings'                      => 0,  
                            }, 
    MIN_PERL_VERSION     =>  5.006,
    AUTHOR               => 'Abigail <cpan@abigail.be>',
    LICENSE              => 'mit',
    META_MERGE           => {
        build_requires   => {'Test::More'        => 0,
                             'Acme::CPANAuthors' => 0,  
                             'strict'            => 0,  
                             'warnings'          => 0,  
                            }, 
        resources        => {
            repository   =>
                    'git://github.com/Abigail/Acme--CPANAuthors--European.git',
        },
        keywords         => [qw [ ]],
    },
);

my %filter = (
    MIN_PERL_VERSION     => '6.48',
    LICENSE              => '6.48',
    META_MERGE           => '6.46',
    AUTHOR               => '6.07',
    ABSTRACT_FROM        => '6.07',
);

delete $args {$_} for grep {defined $filter {$_} &&
                            $ExtUtils::MakeMaker::VERSION lt $filter {$_}}
                            keys %args;


WriteMakefile %args;

__END__