-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
30 lines (27 loc) · 989 Bytes
/
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
use ExtUtils::MakeMaker::Config;
my $output = WriteMakefile(
NAME => 'APNIC::RPKI::RTR::Client',
AUTHOR => 'Software <software@apnic.net>',
LICENSE => 'bsd',
VERSION_FROM => 'lib/APNIC/RPKI/RTR/Client.pm',
META_MERGE => {
resources => {
repository => 'https://github.com/APNIC-net/rpki-rtr-demo'
}
},
EXE_FILES => [ qw(bin/rpki-rtr-client
bin/rpki-rtr-client-aggregator
bin/rpki-rtr-server
bin/rpki-rtr-server-mnt) ],
PREREQ_PM => { 'Test::More' => 0,
'File::Slurp' => 0,
'IO::Socket' => 0,
'JSON::XS' => 0,
'Net::IP::XS' => 0,
'IO::Select' => 0,
'IO::Socket::SSL' => 0, }
);
1;