@@ -2,36 +2,33 @@ use strict;
2
2
use ExtUtils::MakeMaker;
3
3
4
4
WriteMakefile(
5
- NAME => ' HTML::Parser' ,
6
- VERSION_FROM => ' Parser.pm' ,
5
+ NAME => ' HTML::Parser' ,
6
+ VERSION_FROM => ' Parser.pm' ,
7
7
ABSTRACT_FROM => ' Parser.pm' ,
8
- AUTHOR => ' Gisle Aas <[email protected] >' ,
9
- LICENSE => ' perl' ,
8
+ AUTHOR => ' Gisle Aas <[email protected] >' ,
9
+ LICENSE => ' perl' ,
10
10
11
11
MIN_PERL_VERSION => 5.008,
12
- PREREQ_PM => {
13
- ' HTML::Tagset' => 3,
14
- ' XSLoader' => 0,
15
- },
16
- META_MERGE => {
17
- build_requires => { ' Test::More' => 0 },
18
- recommends => { ' HTTP::Headers' => 0 },
19
- resources => {
20
- repository => ' http://github.com/gisle/html-parser' ,
21
- MailingList => ' mailto:[email protected] ' ,
12
+ PREREQ_PM => {' HTML::Tagset' => 3, ' XSLoader' => 0,},
13
+ META_MERGE => {
14
+ build_requires => {' Test::More' => 0},
15
+ recommends => {' HTTP::Headers' => 0},
16
+ resources => {
17
+ repository => ' https://github.com/libwww-perl/HTML-Parser' ,
18
+ MailingList => ' mailto:[email protected] ' ,
22
19
}
23
20
},
24
21
25
- DEFINE => " -DMARKED_SECTION" ,
26
- H => [ " hparser.h" , " hctype.h" , " tokenpos.h" , " pfunc.h" ,
27
- " hparser.c" , " util.c" ,
28
- ],
29
- clean => { FILES => ' hctype.h pfunc.h' },
22
+ DEFINE => " -DMARKED_SECTION" ,
23
+ H => [
24
+ " hparser.h" , " hctype.h" , " tokenpos.h" , " pfunc.h" ,
25
+ " hparser.c" , " util.c" ,
26
+ ],
27
+ clean => {FILES => ' hctype.h pfunc.h' },
30
28
);
31
29
32
30
33
- sub MY ::postamble
34
- {
31
+ sub MY ::postamble {
35
32
'
36
33
pfunc.h : mkpfunc
37
34
$(PERLRUN) mkpfunc >pfunc.h
@@ -44,10 +41,10 @@ hctype.h : mkhctype
44
41
BEGIN {
45
42
# compatibility with older versions of MakeMaker
46
43
my $developer = -f " MANIFEST.SKIP" ;
47
- my %mm_req = (
48
- LICENCE => 6.31,
49
- META_MERGE => 6.45,
50
- META_ADD => 6.45,
44
+ my %mm_req = (
45
+ LICENCE => 6.31,
46
+ META_MERGE => 6.45,
47
+ META_ADD => 6.45,
51
48
MIN_PERL_VERSION => 6.48,
52
49
);
53
50
undef (*WriteMakefile);
0 commit comments