X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=bfb1d137a1f528f2fa5145ec5e9bbf0a4fa6fa85;hb=d0797f762a80a7ebad75dfd1c453dd2f7a6e38e8;hp=c1224f49769651fa87187b838cff07902e8ea452;hpb=4d5d5872e8624a2e37fb68c6a280f497806313e8;p=perl%2Fmodules%2Fre-engine-Plugin.git diff --git a/Makefile.PL b/Makefile.PL index c1224f4..bfb1d13 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,19 +1,25 @@ -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', + 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;