forked from cjac/NIST-NVD-Store-SQLite3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
33 lines (31 loc) · 1002 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
31
32
33
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'NIST::NVD::Store::SQLite3',
AUTHOR => q{C.J. Adams-Collier <[email protected]>},
EXE_FILES => ['bin/convert-nvdcve'],
VERSION_FROM => 'lib/NIST/NVD/Store/SQLite3.pm',
ABSTRACT_FROM => 'lib/NIST/NVD/Store/SQLite3.pm',
LICENSE => 'perl',
PL_FILES => {},
BUILD_REQUIRES => {
'Test::More' => 0,
'Test::Pod::Coverage' => 0,
'Test::Pod' => 0,
'Perl::Critic' => 0,
'XML::XPath' => 0,
'XML::XPath::XMLParser' => 0,
'File::MMagic' => 0,
'File::LibMagic' => 0,
},
PREREQ_PM => {
'Time::HiRes' => 0,
DBI => 0,
'DBD::SQLite' => 0,
'XML::XPath' => 0,
'NIST::NVD' => 1,
},
dist => { COMPRESS => 'gzip --best', SUFFIX => 'gz', },
clean => { FILES => 'NIST-NVD-Store-SQLite3-*' },
);