X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2Fre-engine-Plugin.git;a=blobdiff_plain;f=Makefile.PL;h=b52770831d95064b0d56a1e2ca38f72e550bcb08;hp=c1224f49769651fa87187b838cff07902e8ea452;hb=74d4856719cde7c6dc286b0c3e5dc78112d2fbff;hpb=dd88e700bfcc92fc03db9d994ec747ca1c14ade7 diff --git a/Makefile.PL b/Makefile.PL index c1224f4..b527708 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,19 +1,13 @@ -use strict; -use inc::Module::Install; - -name 're-engine-Plugin'; - -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 t/*/*.t 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', + }, +);