From: Mischa POSLAWSKY Date: Sat, 31 Mar 2007 00:56:44 +0000 (+0200) Subject: makefile cleanup X-Git-Tag: 3.19~7 X-Git-Url: http://git.shiar.net/perl/plp/.git/commitdiff_plain/9a1b0361b84c77b093cccf584b3b310fc2ffccd9 makefile cleanup Also drops perl <5.5 support, since PLP requires 5.6 anyway. --- 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 ', );