-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
54 lines (51 loc) · 1.93 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
54
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'CSAF',
AUTHOR => q{Giuseppe Di Terlizzi <gdt@cpan.org>},
VERSION_FROM => 'lib/CSAF.pm',
ABSTRACT_FROM => 'lib/CSAF.pm',
LICENSE => 'artistic_2',
EXE_FILES => ['bin/csaf-validator', 'bin/csaf-rolie', 'bin/csaf-downloader', 'bin/csaf2html'],
MIN_PERL_VERSION => 5.010,
PL_FILES => {},
CONFIGURE_REQUIRES => {'ExtUtils::MakeMaker' => '0'},
TEST_REQUIRES => {'Test::More' => '0'},
PREREQ_PM => {
'Cpanel::JSON::XS' => '0',
'Digest::SHA' => '0', # CORE
'File::Basename' => '0', # CORE
'File::Path' => '0', # CORE
'File::Spec::Functions' => '0', # CORE
'GnuPG::Interface' => '0',
'LWP::UserAgent' => '0',
'JSON::Validator' => '0',
'List::MoreUtils' => '0',
'List::Util' => '0', # CORE
'Log::Any' => '0',
'Moo' => '0',
'Parallel::ForkManager' => '0',
'Template' => '0',
'Tie::File' => '0', # CORE
'Time::Piece' => '0', # CORE
'URI::PackageURL' => '0',
'YAML::XS' => '0',
'CVSS' => '0',
},
META_MERGE => {
'meta-spec' => {version => 2},
'resources' => {
bugtracker => {web => 'https://github.com/giterlizzi/perl-CSAF/issues'},
repository => {
type => 'git',
url => 'git://github.com/giterlizzi/perl-CSAF',
web => 'https://github.com/giterlizzi/perl-CSAF'
}
},
x_purl => 'pkg:cpan/GDT/CSAF'
},
dist => {COMPRESS => 'gzip -9f', SUFFIX => 'gz'},
clean => {FILES => 'CSAF-*'}
);