From 0ba616e0dad84b466de28c9fdeaab9c1144e4c08 Mon Sep 17 00:00:00 2001 From: Marius Gavrilescu Date: Fri, 17 Jul 2015 13:32:47 +0300 Subject: [PATCH] Write a modern Makefile.PL --- Makefile.PL | 23 ++++++++++++++++------- 1 file changed, 16 insertions(+), 7 deletions(-) diff --git a/Makefile.PL b/Makefile.PL index d9ab6a0..c55cdaf 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -1,11 +1,20 @@ use ExtUtils::MakeMaker; WriteMakefile( - 'NAME' => 'Pod::Constants', - 'VERSION_FROM' => "Constants.pm", - 'PREREQ_PM' => { Pod::Parser => 1.13, - Test::Simple => 0.18, - }, - ABSTRACT_FROM => 'Constants.pm', - AUTHOR => 'Sam Vilain ', + NAME => 'Pod::Constants', + VERSION_FROM => 'lib/Pod/Constants.pm', + ABSTRACT_FROM => 'lib/Pod/Constants.pm', + AUTHOR => 'Sam Vilain ', + MIN_PERL_VERSION => '5.6.2', + LICENSE => 'artistic_2', + SIGN => 1, + PREREQ_PM => { + qw/Pod::Parser 1.13/, + }, + META_ADD => { + dynamic_config => 0, + resources => { + repository => 'https://git.ieval.ro/?p=pod-constants.git', + }, + } ); -- 2.30.2