forked from APNIC-net/rpki-mft-number-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
34 lines (31 loc) · 1.18 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
use ExtUtils::MakeMaker::Config;
my $output = WriteMakefile(
NAME => 'APNIC::RPKI::CA',
AUTHOR => 'Software <software@apnic.net>',
LICENSE => 'bsd',
VERSION_FROM => 'lib/APNIC/RPKI/CA.pm',
META_MERGE => {
resources => {
repository => 'https://github.com/APNIC-net/rpki-mft-number-demo'
}
},
EXE_FILES => [ qw(bin/setup-ca
bin/show-ca-cert
bin/issue-roa
bin/reissue-crl-and-mft
bin/init-validator
bin/run-validator
bin/run-test
bin/ripe-validator-3-output-json-to-csvs
bin/octorpki-output-json-to-csvs) ],
PREREQ_PM => { 'Test::More' => 0,
'HTTP::Daemon' => 0,
'YAML' => 0,
'LWP::UserAgent' => 0,
'List::MoreUtils' => 0,
'IO::Capture::Stderr' => 0, }
);
1;