-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
43 lines (42 loc) · 1.37 KB
/
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
38
39
40
41
42
43
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'Module::Generic',
AUTHOR => 'Jacques Deguest <[email protected]>',
VERSION_FROM => 'lib/Module/Generic.pm',
ABSTRACT_FROM => 'lib/Module/Generic.pm',
PL_FILES => {},
PREREQ_PM => {
'Test::More' => 0,
'overload' => '1.22',
'overloading' => '0.02',
'Scalar::Util' => '1.50',
'Data::Dumper' => 0,
'Data::Printer' => 0,
'Devel::StackTrace' => 0,
'Class::Struct' => '0.62',
'Text::Number' => 0,
'Number::Format' => '1.75',
'Exporter' => '5.73',
},
LICENSE => 'perl_5',
MIN_PERL_VERSION => 5.6.0,
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Module-Generic-*' },
( eval { ExtUtils::MakeMaker->VERSION(6.46) } ? () : ( META_MERGE => {
'meta-spec' => { version => 2 },
dynamic_config => 1,
resources => {
# homepage => undef,
repository => {
url => '[email protected]:jackdeguest/Module-Generic.git',
web => 'https://github.com/jackdeguest/Module-Generic',
type => 'git',
},
# bugtracker => {
# web => undef,
# },
},
})),
);