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