-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile.PL
37 lines (35 loc) · 999 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
35
36
37
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Convert::Pluggable',
AUTHOR => q{bradley andersen <[email protected]>},
VERSION_FROM => 'lib/Convert/Pluggable.pm',
ABSTRACT_FROM => 'lib/Convert/Pluggable.pm',
LICENSE => 'Artistic_2_0',
PL_FILES => {},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => 0,
},
BUILD_REQUIRES => {
'Test::More' => 0,
'Math::Round' => 0,
'Data::Dump' => 0,
'File::Basename' => 0,
'File::Slurp' => 0,
'Switch' => 0,
},
PREREQ_PM => {
'Data::Float' => 0,
'Exporter' => 0,
'JSON' => 0,
'Scalar::Util' => 0,
'Moo' => 0,
'Math::Round' => 0,
'File::Basename' => 0,
'File::Slurp' => 0,
'Switch' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Convert-Pluggable-*' },
);