Allow the name of the keyword to be changed.
[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',
10 ($ExtUtils::MakeMaker::VERSION >= 6.3002
11 ? ('LICENSE'=> 'perl')
12 : ()),
13 PL_FILES => {},
14 PREREQ_PM => {
15 'Test::More' => 0,
16 'warnings' => 0,
17 'strict' => 0,
18 'Devel::Declare' => 0,
19 'B::Hooks::EndOfScope' => 0,
20 'B::Compiling' => 0,
21 },
22 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
23 clean => { FILES => 'Function-Parameters-*' },
24);