File: Build.PL

package info (click to toggle)
libtest-xpath-perl 0.16-2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 160 kB
  • ctags: 21
  • sloc: perl: 476; xml: 124; makefile: 14
file content (30 lines) | stat: -rw-r--r-- 885 bytes parent folder | download | duplicates (2)
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
use strict;
use warnings;
use Module::Build;

Module::Build->new(
    module_name        => 'Test::XPath',
    license            => 'perl',
    configure_requires => { 'Module::Build' => '0.30', },
    build_requires     => {
        'Module::Build' => '0.30',
        'Test::More'    => '0.70',
    },
    requires => {
        'Test::Builder' => '0.70',
        'XML::LibXML'   => '1.70',
        'perl'          => 5.006002,
    },
    recommends => {
        'Test::Pod'           => '1.41',
        'Test::Pod::Coverage' => '1.06',
        'HTML::Selector::XPath' => '0.06',
    },
    meta_merge => {
        resources => {
            homepage   => 'http://search.cpan.org/dist/Test-XPath/',
            bugtracker => 'http://github.com/theory/test-xpath/issues/',
            repository => 'http://github.com/theory/test-xpath/tree/',
        }
    },
)->create_build_script;