File: Makefile.PL

package info (click to toggle)
libtest-xpath-perl 0.20-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 160 kB
  • sloc: perl: 520; xml: 124; makefile: 2; sh: 1
file content (47 lines) | stat: -rw-r--r-- 1,378 bytes parent folder | download
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
#!/usr/bin/perl

use 5.006;
use strict;
use warnings FATAL => 'all';
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME               => 'Test::XPath',
    AUTHOR             => q{David E. Wheeler <dwheeler@cpan.org>},
    VERSION_FROM       => 'lib/Test/XPath.pm',
    ABSTRACT_FROM      => 'lib/Test/XPath.pm',
    LICENSE            => 'perl',
    MIN_PERL_VERSION   => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES   => {
        'Test::More' => '0.70',
    },
    PREREQ_PM           => {
        'Test::Builder' => '0.70',
        'XML::LibXML'   => '1.70',
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Test-XPath-*' },
    (eval { ExtUtils::MakeMaker->VERSION(6.46) } ? (META_MERGE => {
        'meta-spec' => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url  => 'https://github.com/manwar/Test-XPath.git',
                web  => 'https://github.com/manwar/Test-XPath',
            },
            bugtracker => {
                web => 'http://github.com/manwar/test-xpath/issues',
            },
        },
        prereqs => {
            runtime => {
                recommends => {
                    'HTML::Selector::XPath' => '0.06',
                },
            },
        },
    }) : () ),
);