blob: beff53f2361bbf6f9e88ed0ad775d7598f4b1140 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
require 5.008;
use ExtUtils::MakeMaker;
WriteMakefile
(
'NAME' => 'HTML::Tree',
'VERSION_FROM' => 'lib/HTML/Element.pm',
'PREREQ_PM' => {
'Carp' => '0',
'Exporter' => '0',
'HTML::Entities' => '0',
'HTML::Parser' => '3.46',
'HTML::Tagset' => '3.02',
'Scalar::Util' => '0',
'integer' => '0',
},
'INSTALLDIRS' => 'site',
'EXE_FILES' => [],
'PL_FILES' => {}
)
;
|