-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
44 lines (43 loc) · 1.46 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
44
use strict;
use warnings;
use ExtUtils::MakeMaker 6.48;
WriteMakefile(
NAME => 'Statistics::Sampler::Multinomial',
AUTHOR => 'Shawn Laffan <shawnlaffan@gmail.com>',
VERSION_FROM => 'lib/Statistics/Sampler/Multinomial.pm',
ABSTRACT_FROM => 'lib/Statistics/Sampler/Multinomial.pm',
MIN_PERL_VERSION => '5.014',
LICENSE => 'perl_5',
PL_FILES => {},
PREREQ_PM => {
'Carp' => 0,
'parent' => 0,
'Clone' => 0,
'Ref::Util' => 0,
'List::Util' => 1.29,
'Scalar::Util' => 0,
'List::MoreUtils' => 0,
'Math::Random::MT::Auto' => 0,
},
TEST_REQUIRES => {
'Test::More' => 0,
'Test::Most' => 0,
'rlib' => 0,
'Devel::Symdump' => 0,
},
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/shawnlaffan/perl-statistics-sampler-multinomial.git',
web => 'https://github.com/shawnlaffan/perl-statistics-sampler-multinomial',
},
bugtracker => {
web => 'https://github.com/shawnlaffan/perl-statistics-sampler-multinomial/issues/',
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Statistics-Sampler-Multinomial-*' },
);