-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.PL
34 lines (32 loc) · 910 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 5.006;
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Chaos::Toolkit',
AUTHOR => q{Marco Masetti <[email protected]>},
VERSION_FROM => 'lib/Chaos/Toolkit.pm',
ABSTRACT_FROM => 'lib/Chaos/Toolkit.pm',
LICENSE => 'artistic_2',
PL_FILES => {},
EXE_FILES => [
'scripts/chaos.pl',
],
MIN_PERL_VERSION => '5.006',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
BUILD_REQUIRES => {
'Test::More' => '0',
},
PREREQ_PM => {
'Moo' => 0,
'Types::Standard' => 0,
'Time::HiRes' => 0,
'JSON::XS' => 0,
'Log::Log4perl' => 0,
'Try::Tiny' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Chaos-Toolkit-*' },
);