1# This file was automatically generated by Dist::Zilla::Plugin::MakeMaker v5.036.
2use strict;
3use warnings;
4
5use 5.010;
6
7use ExtUtils::MakeMaker;
8
9my %WriteMakefileArgs = (
10  "ABSTRACT" => "Perl module to simulate die rolls",
11  "AUTHOR" => "Philip Newton <pne\@cpan.org>, Ricardo Signes <rjbs\@cpan.org>",
12  "CONFIGURE_REQUIRES" => {
13    "ExtUtils::MakeMaker" => 0
14  },
15  "DISTNAME" => "Games-Dice",
16  "EXE_FILES" => [
17    "bin/roll"
18  ],
19  "LICENSE" => "mit",
20  "MIN_PERL_VERSION" => "5.010",
21  "NAME" => "Games::Dice",
22  "PREREQ_PM" => {
23    "Exporter" => 0,
24    "if" => 0,
25    "strict" => 0,
26    "warnings" => 0
27  },
28  "TEST_REQUIRES" => {
29    "ExtUtils::MakeMaker" => 0,
30    "File::Spec" => 0,
31    "Test::More" => "0.96"
32  },
33  "VERSION" => "0.045",
34  "test" => {
35    "TESTS" => "t/*.t"
36  }
37);
38
39
40my %FallbackPrereqs = (
41  "Exporter" => 0,
42  "ExtUtils::MakeMaker" => 0,
43  "File::Spec" => 0,
44  "Test::More" => "0.96",
45  "if" => 0,
46  "strict" => 0,
47  "warnings" => 0
48);
49
50
51unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
52  delete $WriteMakefileArgs{TEST_REQUIRES};
53  delete $WriteMakefileArgs{BUILD_REQUIRES};
54  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
55}
56
57delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
58  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };
59
60if ( $^O eq 'MSWin32' ) {
61	$WriteMakefileArgs{PREREQ_PM}{'Math::Random::MT::Perl'} = '1.1';
62}
63
64WriteMakefile(%WriteMakefileArgs);
65