APNIC: Handle multiple abuse-mailboxes at a role
[App-Abuser.git] / Makefile.PL
blob079f0678991e248186ae59ff321bbbcb9adc3a93
1 use ExtUtils::MakeMaker;
2 use strict;
3 use warnings;
5 WriteMakefile(
6     'NAME'  => 'App::Abuser',
7     'VERSION_FROM' => 'lib/App/Abuser.pm',
8     'LICENSE' => 'open_source',
9     'EXE_FILES' => [ 'scripts/abuser' ],
10     'CONFIGURE_REQUIRES' => {
11         'ExtUtils::MakeMaker' => '0',
12     },
13     'PREREQ_PM' => {
14         'Data::Dumper' => '0',
15         'Getopt::Long' => '0',
16         'IO::Socket::IP' => '0',
17         'List::MoreUtils' => '0',
18         'open' => '0',
19         'PerlIO::encoding' => '0',
20         'Pod::Usage' => '0',
21         'Socket' => '0',
22         'strict' => '0',
23         'warnings' => '0',
24     },
25     'TEST_REQUIRES' => {
26         'Test::More' => '0',
27         'utf8' => '0',
28     },
29     'META_MERGE' => {
30         'resources' => {
31             'type' => 'git',
32             'url' => 'git://repo.or.cz/App-Abuser.git',
33             'web' => 'https://repo.or.cz/App-Abuser.git',
34         },
35     },