1use ExtUtils::MakeMaker;
2WriteMakefile(
3    NAME            => 'if',
4    VERSION_FROM    => 'if.pm', # finds $VERSION
5    ABSTRACT_FROM   => 'if.pm',
6    # core since 5.7.3
7    (($] >= 5.007003 && $] < 5.011 ) ? (
8        'INSTALLDIRS'  => 'perl') : ()
9    ),
10    AUTHOR  => 'Ilya Zakharevich <ilyaz@cpan.org>',
11    LICENSE => 'perl_5',
12
13    META_MERGE => {
14        'meta-spec' => { version => 2 },
15        dynamic_config => 0,
16        resources => {
17            repository => {
18                type => 'git',
19                url => 'https://github.com/perl/perl5.git',
20                web => 'https://github.com/perl/perl5',
21            },
22            bugtracker => {
23                web => 'https://github.com/Perl/perl5/issues',
24            },
25        },
26    },
27);
28