adding Makefile.PL

This commit is contained in:
dataking 2016-10-23 11:42:52 -07:00
parent 403996e160
commit 7669dc15ce

22
Makefile.PL Normal file
View 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,
},
);