X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=1c07b3e896a4b359633204d3a3066e050228aced;hb=b2d169dc7467a275069b4378c600df905ea1c6ff;hp=c1224f49769651fa87187b838cff07902e8ea452;hpb=4d5d5872e8624a2e37fb68c6a280f497806313e8;p=perl%2Fmodules%2Fre-engine-Plugin.git diff --git a/Makefile.PL b/Makefile.PL index c1224f4..1c07b3e 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,19 +1,26 @@ -use strict; -use inc::Module::Install; +use 5.009005; +use ExtUtils::MakeMaker; -name 're-engine-Plugin'; +WriteMakefile( + NAME => 're::engine::Plugin', + AUTHOR => 'Ævar Arnfjörð Bjarmason ', + ABSTRACT_FROM => 'Plugin.pod', + VERSION_FROM => 'Plugin.pm', + LICENSE => 'perl', + CCFLAGS => '-Wall', + test => { + TESTS => 't/*.t t/*/*.t t/*/*/*.t', + }, +); -perl_version '5.009005'; +sub MY::postamble { + return <ChangeLog -author 'Ævar Arnfjörð Bjarmason '; +META.yml: Makefile + touch META.yml -abstract_from 'Plugin.pod'; -license_from 'Plugin.pod'; +END +} -# t/ -build_requires 'Test::More' => 0; # 5.007003 - -tests 't/*.t t/*/*.t t/*/*/*.t'; - -auto_install; -WriteAll;