-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
31 lines (28 loc) · 1.06 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
use ExtUtils::MakeMaker::Config;
my $output = WriteMakefile(
NAME => 'APNIC::RDAP::RMP::Server',
AUTHOR => 'Software <[email protected]>',
LICENSE => 'bsd',
VERSION_FROM => 'lib/APNIC/RDAP/RMP/Server.pm',
META_MERGE => {
resources => {
repository => 'https://github.com/APNIC-net/rdap-rmp-demo'
}
},
EXE_FILES => [ qw(bin/rdap-rmp-server
bin/rdap-rmp-client
bin/rdap-rmp-generate-key
bin/rdap-rmp-test-setup) ],
PREREQ_PM => { 'Crypt::JWT' => 0,
'JSON::XS' => 0,
'Net::IP::XS' => 0,
'Set::IntervalTree' => 0,
'Net::Patricia' => 0,
'Test::More' => 0,
'HTTP::Daemon' => 0,
'LWP::UserAgent' => 0 },
);
1;