prune dead code
[p5sagit/Function-Parameters.git] / Makefile.PL
1 use 5.006;
2 use strict;
3 use warnings;
4 use ExtUtils::MakeMaker;
5
6 WriteMakefile(
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',
11     CONFIGURE_REQUIRES => {
12         'ExtUtils::MakeMaker' => '6.56',
13     },
14     LICENSE => 'perl',
15     PL_FILES => {},
16     BUILD_REQUIRES => {
17         'Dir::Self' => 0,
18         'Test::More' => 0,
19         'Test::Fatal' => 0,
20     },
21     PREREQ_PM => {
22         'Carp' => 0,
23         'XSLoader' => 0,
24         'warnings' => 0,
25         'strict' => 0,
26     },
27     MIN_PERL_VERSION => '5.14.0',
28     META_MERGE => {
29         'meta-spec' => { version => 2 },
30         resources => {
31                 repository => {
32                         url => 'git://git.shadowcat.co.uk/p5sagit/Function-Parameters',
33                         web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Function-Parameters.git',
34                         type => 'git',
35                 },
36         },
37     },
38     depend => { Makefile => '$(VERSION_FROM)' },
39     test => { TESTS => 't/*.t t/foreign/*.t t/foreign/*/*.t' },
40     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
41     clean               => { FILES => 'Function-Parameters-*' },
42 );