File: Build.PL

package info (click to toggle)
libparse-recdescent-perl 1.967015%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 764 kB
  • sloc: perl: 6,797; makefile: 13; ansic: 9
file content (33 lines) | stat: -rwxr-xr-x 990 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
31
32
33
use strict;
use warnings;
use Module::Build;

my $builder = Module::Build->new(
    module_name         => 'Parse::RecDescent',
    license             => 'perl',
    dist_author         => [
        'Damian Conway <DCONWAY@CPAN.org>',
        'Jeremy T. Braun <JTBRAUN@CPAN.org>',
    ],
    dist_version_from   => 'lib/Parse/RecDescent.pm',
    requires => {
        'Text::Balanced' => 1.95,
        'Test::More'     => 0,
    },
    add_to_cleanup      => [ 'Parse-RecDescent-*' ],
    meta_merge          => {
        "meta-spec" => { version => 2 },
        resources => {
            repository => {
                type => 'git',
                url => 'git://github.com/jtbraun/Parse-RecDescent',
                web => 'https://github.com/jtbraun/Parse-RecDescent',
            },
            bugtracker => {
                web => 'https://rt.cpan.org/Dist/Display.html?Status=Active&Queue=Parse-RecDescent',
            },
        },
    },
);

$builder->create_build_script();