-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMakefile.PL
55 lines (55 loc) · 1.27 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
45
46
47
48
49
50
51
52
53
54
55
#!/usr/bin/env perl
use ExtUtils::MakeMaker 6.52;
WriteMakefile(
NAME => 'Util::H2O',
AUTHOR => 'Hauke D <[email protected]>',
LICENSE => 'perl_5',
VERSION_FROM => 'lib/Util/H2O.pm',
ABSTRACT_FROM => 'lib/Util/H2O.pm',
MIN_PERL_VERSION => '5.8.9',
META_MERGE => {
'meta-spec' => { version => 2 },
provides => {
'Util::H2O' => {
file => 'lib/Util/H2O.pm',
version => '0.26',
},
'Util::H2O::Also' => {
file => 'lib/Util/H2O/Also.pm',
version => '0.26',
},
},
resources => {
homepage => 'https://github.com/haukex/Util-H2O',
repository => {
type => 'git',
url => 'https://github.com/haukex/Util-H2O.git',
web => 'https://github.com/haukex/Util-H2O',
},
bugtracker => {
web => 'https://github.com/haukex/Util-H2O/issues',
},
},
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64',
},
PREREQ_PM => {
'Carp' => 0,
'Exporter' => '5.58',
'Symbol' => 0,
'Hash::Util' => '0.06',
},
TEST_REQUIRES => {
'Test::More' => '1.302096',
'Scalar::Util' => 0,
},
);
sub MY::postamble {
return <<'MAKE_FRAG';
.PHONY: authorcover
authorcover: test
cpanm Devel::Cover
cover -test
MAKE_FRAG
}