xref: /openbsd-src/gnu/usr.bin/perl/dist/Exporter/Makefile.PL (revision f2a19305cfc49ea4d1a5feb55cd6c283c6f1e031)
1use 5.006;
2use ExtUtils::MakeMaker;
3
4my $EUMM_VERSION = $ExtUtils::MakeMaker::VERSION;
5$EUMM_VERSION =~ s/_//g;
6
7WriteMakefile(
8    NAME         => 'Exporter',
9    VERSION_FROM => 'lib/Exporter.pm',
10    ( $] > 5.011 ) ? () : ( INSTALLDIRS => 'perl' ),    # CPAN sourced versions should now install to site
11    PREREQ_PM => {
12        'Carp' => '1.05',
13    },
14    ABSTRACT_FROM => 'lib/Exporter.pm',
15    ( $EUMM_VERSION >= 6.31 ? ( LICENSE => 'perl_5' ) : () ),
16    dist       => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
17    META_MERGE => {
18        recommends => {
19            'Test::Pod'           => 1.18,
20            'Test::Pod::Coverage' => 1.04
21        },
22        resources => {
23            license     => 'http://dev.perl.org/licenses/',
24            bugtracker  => 'https://github.com/Perl/perl5/issues',
25            repository  => 'https://github.com/Perl/perl5/tree/blead/dist/Exporter',
26            MailingList => 'http://lists.perl.org/list/perl5-porters.html',
27        },
28    },
29);
30