-
Notifications
You must be signed in to change notification settings - Fork 1
/
Makefile.PL
36 lines (33 loc) · 1005 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
use strict;
use warnings;
use ExtUtils::MakeMaker;
my $EUMM_VERSION = eval($ExtUtils::MakeMaker::VERSION);
WriteMakefile(
NAME => 'Getopt::Module',
VERSION_FROM => 'lib/Getopt/Module.pm',
PREREQ_PM => {
'Carp' => 0,
'constant' => 0,
'Data::Dumper' => 0,
'Exporter' => 0,
'Scalar::Util' => 0,
'version' => '0.77',
},
ABSTRACT_FROM => 'lib/Getopt/Module.pod',
AUTHOR => 'chocolateboy <chocolate@cpan.org>',
($EUMM_VERSION >= 6.31 ? (LICENSE => 'perl') : ()),
($EUMM_VERSION >= 6.46 ?
(
META_MERGE => {
test_requires => {
'Test::More' => 0,
},
resources => {
repository => 'https://github.com/chocolateboy/Getopt-Module',
bugtracker => 'https://github.com/chocolateboy/Getopt-Module/issues',
},
}
)
: ()
),
);