File: Makefile.PL

package info (click to toggle)
libxml-compacttree-perl 0.03-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 104 kB
  • sloc: perl: 241; makefile: 2
file content (25 lines) | stat: -rw-r--r-- 504 bytes parent folder | download | duplicates (3)
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
BEGIN {
  if ($] < 5.006_001) {
    warn "\nSorry, at least Perl 5.6.1 is required for this module!\n\n";
    exit;
  }
}

use ExtUtils::MakeMaker;
use Config;

$|=0;

my %meta = (
    NAME => 'XML::CompactTree',
    ABSTRACT  => 'Fast parser of XML document into nested arrays',
    AUTHOR => 'Petr Pajas <pajas@matfyz.cz>',
    VERSION_FROM   => 'CompactTree.pm',
    PREREQ_PM => {
        'Test::More' => 0,
        'XML::LibXML' => 1.68,
    },
);

WriteMakefile( %meta );