-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
32 lines (30 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
32
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'CVSS',
AUTHOR => q{Giuseppe Di Terlizzi <gdt@cpan.org>},
VERSION_FROM => 'lib/CVSS.pm',
LICENSE => 'artistic_2',
EXE_FILES => ['bin/cvss'],
MIN_PERL_VERSION => 5.010,
PL_FILES => {},
CONFIGURE_REQUIRES => {'ExtUtils::MakeMaker' => '0'},
TEST_REQUIRES => {'Test::More' => '0', 'JSON::PP' => '0'},
PREREQ_PM => {'List::Util' => '0', 'JSON::PP' => '0'},
META_MERGE => {
'meta-spec' => {version => 2},
'resources' => {
bugtracker => {web => 'https://github.com/giterlizzi/perl-CVSS/issues'},
repository => {
type => 'git',
url => 'git://github.com/giterlizzi/perl-CVSS',
web => 'https://github.com/giterlizzi/perl-CVSS'
},
},
x_purl => 'pkg:cpan/GDT/CVSS'
},
dist => {COMPRESS => 'gzip -9f', SUFFIX => 'gz',},
clean => {FILES => 'CVSS-*'},
);