-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.PL
65 lines (62 loc) · 1.58 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
56
57
58
59
60
61
62
63
64
65
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
NAME => 'XML::Invisible',
AUTHOR => q{Ed J <etj@cpan.org>},
VERSION_FROM => 'lib/XML/Invisible.pm',
ABSTRACT_FROM => 'lib/XML/Invisible.pm',
LICENSE => 'artistic_2',
MIN_PERL_VERSION => '5.008003',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64', # TEST_REQUIRES
},
TEST_REQUIRES => {
'Test::More' => '0.88', # done_testing
'Import::Into' => '0',
'Test::Snapshot' => '0.02', # better snapshot filenames
},
PREREQ_PM => {
'Pegex' => '0.64',
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'XML-Invisible-*' },
META_MERGE => {
"meta-spec" => { version => 2 },
dynamic_config => 0,
resources => {
x_IRC => 'irc://irc.perl.org/#graphql-perl',
repository => {
type => 'git',
url => 'git@github.com:mohawk2/xml-invisible.git',
web => 'https://github.com/mohawk2/xml-invisible',
},
bugtracker => {
web => 'https://github.com/mohawk2/xml-invisible/issues',
},
license => [ 'http://dev.perl.org/licenses/' ],
},
prereqs => {
runtime => {
suggests => {
'XML::LibXML' => '0',
},
},
develop => {
requires => {
'Test::Pod::Coverage' => '1.08',
'Test::Pod' => '1.22',
'Pod::Markdown' => 0,
'XML::LibXML' => '0',
},
},
},
},
);
sub MY::postamble {
<<EOF;
pure_all :: README.md
README.md : \$(VERSION_FROM)
\tpod2markdown \$< >\$\@
EOF
}