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