forked from gbxyz/rdapper
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
executable file
·40 lines (39 loc) · 1.17 KB
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!perl
use ExtUtils::MakeMaker;
use strict;
WriteMakefile(
'NAME' => 'App::rdapper',
'VERSION_FROM' => 'lib/App/rdapper.pm',
'ABSTRACT_FROM' => 'lib/App/rdapper.pm',
'AUTHOR' => [ 'Gavin Brown <[email protected]>' ],
'LICENSE' => 'freebsd',
'EXE_FILES' => [ 'rdapper' ],
'PREREQ_PM' => {
'Getopt::Long' => 0,
'JSON' => 0,
'List::MoreUtils' => 0,
'List::Util' => 0,
'Net::ASN' => 0,
'Net::DNS::Domain' => 0,
'Net::IP' => 0,
'Net::RDAP' => '0.24',
'Pod::Usage' => 0,
'Term::ANSIColor' => 0,
'Term::Size' => 0,
'Text::Wrap' => 0,
'URI' => 0,
},
'META_MERGE' => {
'meta-spec' => { 'version' => 2 },
'resources' => {
'repository' => {
'type' => 'git',
'url' => 'https://github.com/gbxyz/rdapper.git',
'web' => 'https://github.com/gbxyz/rdapper',
},
'bugtracker' => {
'web' => 'https://github.com/gbxyz/rdapper/issues',
},
},
},
);