Merge branch 'metadata' into mooseish-types
[p5sagit/Function-Parameters.git] / Makefile.PL
CommitLineData
fb3ea863 1#!perl
2# vi: set et sw=4 sts=4:
595edbcf 3use 5.006;
7a63380c 4use strict;
5use warnings;
6use ExtUtils::MakeMaker;
7
8WriteMakefile(
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',
d71ccb01 13 CONFIGURE_REQUIRES => {
14 'ExtUtils::MakeMaker' => '6.56',
15 },
16 LICENSE => 'perl',
17 PL_FILES => {},
5bf140a1 18 BUILD_REQUIRES => {
fb3ea863 19 'strict' => 0,
d71ccb01 20 'Dir::Self' => 0,
21 'Test::More' => 0,
595edbcf 22 'Test::Fatal' => 0,
5bf140a1 23 },
7a63380c 24 PREREQ_PM => {
fb3ea863 25 'Carp' => 0,
53c979f0 26 'Moo' => 0,
fb3ea863 27 'XSLoader' => 0,
7a63380c 28 'warnings' => 0,
7a63380c 29 },
7dd35535 30 MIN_PERL_VERSION => '5.14.0',
b42fc137 31 META_MERGE => {
fb3ea863 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 },
b42fc137 40 },
f2b01c0f 41 depend => { Makefile => '$(VERSION_FROM)' },
595edbcf 42 test => { TESTS => 't/*.t t/foreign/*.t t/foreign/*/*.t' },
7a63380c 43 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
44 clean => { FILES => 'Function-Parameters-*' },
45);