insist on 5.14.0 in Makefile.PL
[p5sagit/Function-Parameters.git] / Makefile.PL
CommitLineData
70ae2cdb 1use 5.014;
7a63380c 2use strict;
3use warnings;
4use ExtUtils::MakeMaker;
5
6WriteMakefile(
7 NAME => 'Function::Parameters',
8 AUTHOR => q{Lukas Mai <l.mai@web.de>},
9 VERSION_FROM => 'lib/Function/Parameters.pm',
10 ABSTRACT_FROM => 'lib/Function/Parameters.pm',
d71ccb01 11 CONFIGURE_REQUIRES => {
12 'ExtUtils::MakeMaker' => '6.56',
13 },
14 LICENSE => 'perl',
15 PL_FILES => {},
5bf140a1 16 BUILD_REQUIRES => {
d71ccb01 17 'Dir::Self' => 0,
18 'Test::More' => 0,
5bf140a1 19 },
7a63380c 20 PREREQ_PM => {
db81d362 21 'Carp' => 0,
d71ccb01 22 'XSLoader' => 0,
7a63380c 23 'warnings' => 0,
24 'strict' => 0,
7a63380c 25 },
7dd35535 26 MIN_PERL_VERSION => '5.14.0',
7a63380c 27 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
28 clean => { FILES => 'Function-Parameters-*' },
29);