231340290fa100716df67b6ee8b482a16d3f7abd
[p5sagit/Package-Variant.git] / Makefile.PL
1 use strict;
2 use warnings FATAL => 'all';
3 use ExtUtils::MakeMaker;
4
5 (do 'maint/Makefile.PL.include' or die $@) unless -f 'META.yml';
6
7 WriteMakefile(
8   NAME => 'Package::Variant',
9   VERSION_FROM => 'lib/Package/Variant.pm',
10   CONFIGURE_REQUIRES => {
11     'ExtUtils::MakeMaker' => '6.55_01', # for BUILD_REQUIRES
12   },
13   BUILD_REQUIRES => { 'Test::Fatal' => 0 },
14   PREREQ_PM => {
15     strictures => 1,
16     Carp => 0,
17     'Import::Into' => 1,
18     'Module::Runtime' => '0.013',
19   },
20
21   META_MERGE => {
22     'meta-spec' => { version => 2 },
23     dynamic_config => 0,
24
25     resources => {
26       # r/w: p5sagit@git.shadowcat.co.uk:Package-Variant.git
27       repository => 'git://git.shadowcat.co.uk/p5sagit/Package-Variant.git',
28       homepage => 'http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=p5sagit/Package-Variant.git',
29     },
30
31     no_index => { package => [ 'string' ] },
32   },
33 );