X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=bfb1d137a1f528f2fa5145ec5e9bbf0a4fa6fa85;hb=78b39159a7d3b163f6bc8bcd8284632cd5f875cb;hp=6da951bf3488a0acb05a16d9d2ff96834835ddc1;hpb=def98fc0d7f5e9527b28af6b90d4ddb07fbc845c;p=perl%2Fmodules%2Fre-engine-Plugin.git diff --git a/Makefile.PL b/Makefile.PL index 6da951b..bfb1d13 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,29 +1,25 @@ +use 5.009005; +use ExtUtils::MakeMaker; + +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', + }, +); + +sub MY::postamble { + return <ChangeLog + +META.yml: Makefile + touch META.yml + +END +} -=pod - -L file for L. M::I knows how to -build our XS stuff automatically. - -=cut - -use strict; -use inc::Module::Install; - -name 're-engine-Plugin'; - -# Requires the unreleased match vars features in (as of writing) -# unreleased 5.9.6, but 5.9.5 is the version of blead -perl_version '5.009005'; - -author 'Ævar Arnfjörð Bjarmason '; - -abstract_from 'Plugin.pod'; -license_from 'Plugin.pod'; - -# t/ -build_requires 'Test::More' => 0; # 5.007003 - -tests 't/*.t'; - -auto_install; -WriteAll;