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         'Moo' => 0,
27         'XSLoader' => 0,
28         'warnings' => 0,
29     },
30     MIN_PERL_VERSION => '5.14.0',
31     META_MERGE => {
32         'meta-spec' => { version => 2 },
33         resources => {
34             repository => {
35                 url => 'git://git.shadowcat.co.uk/p5sagit/Function-Parameters',
36                 web => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Function-Parameters.git',
37                 type => 'git',
38             },
39         },
40     },
41     depend => { Makefile => '$(VERSION_FROM)' },
42     test => { TESTS => 't/*.t t/foreign/*.t t/foreign/*/*.t' },
43     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
44     clean               => { FILES => 'Function-Parameters-*' },
45 );