X-Git-Url: http://git.shiar.nl/perl/plp/.git/blobdiff_plain/0daff7b8f9f15f54cfd2af57e4c8f868db199dda..52b63e9e0c0e3d3019a2751158f59cae036b6fe4:/Makefile.PL diff --git a/Makefile.PL b/Makefile.PL index 6d31f93..e452030 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,15 @@ +use 5.006; +use strict; + use ExtUtils::MakeMaker; + # See lib/ExtUtils/MakeMaker.pm for details of how to influence # the contents of the Makefile that is written. + WriteMakefile( - 'NAME' => 'PLP', - 'VERSION_FROM' => 'PLP.pm', # finds $VERSION - 'PREREQ_PM' => { }, # e.g., Module::Name => 1.1 - ($] >= 5.005 ? ## Add these new keywords supported since 5.005 - (ABSTRACT_FROM => 'PLP.pm', # retrieve abstract from module - AUTHOR => 'Mischa POSLAWSKY ') : ()), + NAME => 'PLP', + VERSION_FROM => 'PLP.pm', + PREREQ_PM => {}, + ABSTRACT_FROM => 'PLP.pm', + AUTHOR => 'Mischa POSLAWSKY ', );