autocurry tests
[p5sagit/Function-Parameters.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
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 );