-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
34 lines (32 loc) · 943 Bytes
/
Makefile.PL
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Games::Catan',
VERSION_FROM => 'lib/Games/Catan.pm',
ABSTRACT_FROM => 'lib/Games/Catan.pm',
AUTHOR => ['Mitch McCracken <[email protected]>'],
BUILD_REQUIRES => {'Test::More' => 0},
MIN_PERL_VERSION => '5.8.8',
LICENSE => 'artistic_2',
PREREQ_PM => {
'autovivification' => 0,
'strict' => 0,
'warnings' => 0,
'Graph::Undirected' => 0,
'List::Util' => 0,
'Log::Any' => 0,
'Log::Any::Adapter' => 0,
'Moo' => 0,
'Moo::Role' => 0,
'Storable' => 0,
'Types::Standard' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
'Try::Tiny' => 0,
},
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
);