Merge branch 'master' into metadata
[p5sagit/Function-Parameters.git] / Makefile.PL
1 #!perl
2 # vi: set et sw=4 sts=4:
3 use 5.006;
4 use strict;
5 use warnings;
6 use ExtUtils::MakeMaker;
7
8 WriteMakefile(
9     NAME                => 'Function::Parameters',
10     AUTHOR              => q{Lukas Mai <l.mai@web.de>},
11     VERSION_FROM        => 'lib/Function/Parameters.pm',
12     ABSTRACT_FROM       => 'lib/Function/Parameters.pm',
13     CONFIGURE_REQUIRES => {
14         'ExtUtils::MakeMaker' => '6.56',
15     },
16     LICENSE => 'perl',
17     PL_FILES => {},
18     BUILD_REQUIRES => {
19         'strict' => 0,
20         'Dir::Self' => 0,
21         'Test::More' => 0,
22         'Test::Fatal' => 0,
23     },
24     PREREQ_PM => {
25         'Carp' => 0,
26         'XSLoader' => 0,
27         'warnings' => 0,
28     },
29     MIN_PERL_VERSION => '5.14.0',
30     META_MERGE => {
31         resources => {
32             repository => {
33                 url => 'git://git.shadowcat.co.uk/p5sagit/Function-Parameters',
34                 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Function-Parameters.git',
35                 type => 'git',
36             },
37         },
38     },
39     depend => { Makefile => '$(VERSION_FROM)' },
40     test => { TESTS => 't/*.t t/foreign/*.t t/foreign/*/*.t' },
41     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
42     clean               => { FILES => 'Function-Parameters-*' },
43 );