stop using Module::Install
[gitmo/Moose-Autobox.git] / Makefile.PL
1 use strict;
2 use warnings;
3 use ExtUtils::MakeMaker;
4
5 WriteMakefile(
6   NAME          => 'Moose::Autobox',
7   AUTHOR        => 'Stevan Little <stevan@iinteractive.com>',
8   VERSION_FROM  => 'lib/Moose/Autobox.pm',
9   ABSTRACT_FROM => 'lib/Moose/Autobox.pm',
10   LICENSE       => 'perl',
11   PL_FILES      => {},
12   PREREQ_PM     => {
13     'autobox'         => '2.23',
14     'parent'          => 0,
15     'Moose'           => '0.42',
16     'Syntax::Keyword::Junction' => 0,
17   },
18   TEST_REQUIRES => {
19     'Test::More'      => '0.89',
20     'Test::Exception' => '0.21',
21   },
22   META_MERGE        => {
23     "meta-spec" => { version => 2 },
24     resources => {
25       repository => {
26         type => 'git',
27         url => 'git://git.moose.perl.org/Moose-Autobox.git',
28       },
29     },
30   },
31   dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
32   clean => { FILES => 'Moose-Autobox-*' },
33 );