forked from gbxyz/perl-net-rdap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
executable file
·53 lines (52 loc) · 1.79 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
41
42
43
44
45
46
47
48
49
50
51
52
53
#!/usr/bin/perl
use ExtUtils::MakeMaker;
use warnings;
use strict;
WriteMakefile(
NAME => 'Net::RDAP',
VERSION_FROM => 'lib/Net/RDAP.pm',
ABSTRACT => 'An interface to the Registration Data Access Protocol (RDAP).',
AUTHOR => ['Gavin Brown <[email protected]>'],
LICENSE => 'freebsd',
PREREQ_PM => {
'DateTime::Format::ISO8601' => 0,
'Digest::SHA' => 0,
'File::Basename' => 0,
'File::Slurp' => 0,
'File::Spec' => 0,
'File::Temp' => 0,
'File::stat' => 0,
'HTTP::Date' => 0,
'HTTP::Request::Common' => 0,
'JSON' => 0,
'LWP::Protocol::https' => 0,
'LWP::UserAgent' => 0,
'List::MoreUtils' => 0,
'MIME::Type' => 0,
'Mozilla::CA' => 0,
'Net::ASN' => 0,
'Net::DNS::Domain' => 0,
'Net::DNS::RR::DNSKEY' => 0,
'Net::DNS::RR::DS' => 0,
'Net::IP' => 0,
'Test::More' => 0,
'URI' => 0,
'XML::LibXML' => 0,
'vCard' => 0,
},
META_MERGE => {
'meta-spec' => {
version => 2
},
resources => {
repository => {
type => 'git',
url => 'https://github.com/gbxyz/perl-Net-RDAP.git',
web => 'https://github.com/gbxyz/perl-Net-RDAP',
},
bugtracker => {
web => 'https://github.com/gbxyz/perl-Net-RDAP/issues',
},
},
},
);