1use strict;
2use warnings;
3use ExtUtils::MakeMaker;
4WriteMakefile(
5  NAME          => 'encoding::warnings',
6  VERSION_FROM  => 'lib/encoding/warnings.pm',
7  ABSTRACT_FROM => 'lib/encoding/warnings.pm',
8  INSTALLDIRS   => ( $] >= 5.009002 && $] < 5.011 ? 'perl' : 'site' ),
9  LICENSE       => 'perl_5',
10  TEST_REQUIRES => {
11    'Test::More' => 0,
12  },
13  PREREQ_PM     => {},
14  AUTHOR        => 'Audrey Tang <cpan@audreyt.org>',
15  META_MERGE    => {
16    resources => {
17      repository  => 'https://github.com/perl/perl5.git',
18      bugtracker  => 'https://github.com/perl/perl5/issues',
19      MailingList => 'https://lists.perl.org/list/perl5-porters.html',
20    },
21  },
22);
23