add ':strict' import shortcut
[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',
b42fc137 27 META_MERGE => {
28 'meta-spec' => { version => 2 },
29 resources => {
30 repository => {
31 url => 'git://git.shadowcat.co.uk/p5sagit/Function-Parameters',
32 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Function-Parameters.git',
33 type => 'git',
34 },
35 },
36 },
f2b01c0f 37 depend => { Makefile => '$(VERSION_FROM)' },
7a63380c 38 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
39 clean => { FILES => 'Function-Parameters-*' },
40);