File: Makefile.PL

package info (click to toggle)
libxml-treepuller-perl 0.1.2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, sid, trixie
  • size: 220 kB
  • sloc: perl: 519; xml: 31; makefile: 2
file content (23 lines) | stat: -rw-r--r-- 723 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
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'XML::TreePuller',
    AUTHOR              => q{Tyler Riddle <triddle@gmail.com>},
    VERSION_FROM        => 'lib/XML/TreePuller.pm',
    ABSTRACT_FROM       => 'lib/XML/TreePuller.pm',
    ($ExtUtils::MakeMaker::VERSION >= 6.3002
      ? ('LICENSE'=> 'perl')
      : ()),
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'XML::LibXML' => 1.70,
        'XML::CompactTree' => 0.03,
        'Tree::XPathEngine' => 0.05,
        'Scalar::Util' => 1.23,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'XML-TreePuller-*' },
);