import some (modified) MXMS tests
[p5sagit/Function-Parameters.git] / Makefile.PL
CommitLineData
595edbcf 1use 5.006;
7a63380c 2use strict;
3use warnings;
4use ExtUtils::MakeMaker;
5
6WriteMakefile(
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',
d71ccb01 11 CONFIGURE_REQUIRES => {
12 'ExtUtils::MakeMaker' => '6.56',
13 },
14 LICENSE => 'perl',
15 PL_FILES => {},
5bf140a1 16 BUILD_REQUIRES => {
d71ccb01 17 'Dir::Self' => 0,
18 'Test::More' => 0,
595edbcf 19 'Test::Fatal' => 0,
5bf140a1 20 },
7a63380c 21 PREREQ_PM => {
db81d362 22 'Carp' => 0,
d71ccb01 23 'XSLoader' => 0,
7a63380c 24 'warnings' => 0,
25 'strict' => 0,
7a63380c 26 },
7dd35535 27 MIN_PERL_VERSION => '5.14.0',
b42fc137 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 },
f2b01c0f 38 depend => { Makefile => '$(VERSION_FROM)' },
595edbcf 39 test => { TESTS => 't/*.t t/foreign/*.t t/foreign/*/*.t' },
7a63380c 40 dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
41 clean => { FILES => 'Function-Parameters-*' },
42);