X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=Makefile.PL;h=b52770831d95064b0d56a1e2ca38f72e550bcb08;hb=74d4856719cde7c6dc286b0c3e5dc78112d2fbff;hp=6da951bf3488a0acb05a16d9d2ff96834835ddc1;hpb=def98fc0d7f5e9527b28af6b90d4ddb07fbc845c;p=perl%2Fmodules%2Fre-engine-Plugin.git diff --git a/Makefile.PL b/Makefile.PL index 6da951b..b527708 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,29 +1,13 @@ - -=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; +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', + }, +);