adding Makefile.PL
This commit is contained in:
parent
403996e160
commit
7669dc15ce
22
Makefile.PL
Normal file
22
Makefile.PL
Normal file
|
@ -0,0 +1,22 @@
|
|||
use 5.010001;
|
||||
|
||||
use strict;
|
||||
use warnings;
|
||||
|
||||
use ExtUtils::MakeMaker;
|
||||
|
||||
my ($mm) = $ExtUtils::MakeMaker::VERSION =~ /^([^_]+)/;
|
||||
|
||||
WriteMakefile(
|
||||
NAME => 'lynis_report',
|
||||
VERSION_FROM => 'lynis_report.pl',
|
||||
ABSTRACT => 'Because lynis needs a transportable report sometimes.',
|
||||
AUTHOR => 'Charlie Heselton <dataking@gmail.com>',
|
||||
|
||||
($mm < 6.3002 ? () : ('LICENSE' => 'artistic_2')),
|
||||
|
||||
PREREQ_PM => {
|
||||
'HTML::HTMLDoc' => 0,
|
||||
'Excel::Writer::XLSX' => 0,
|
||||
},
|
||||
);
|
Loading…
Reference in New Issue
Block a user