File: Makefile.PL

package info (click to toggle)
libparse-recdescent-perl 1.967015%2Bdfsg-2
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster
  • size: 768 kB
  • sloc: perl: 6,797; makefile: 15; ansic: 9
file content (41 lines) | stat: -rwxr-xr-x 1,259 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
34
35
36
37
38
39
40
41
use strict;
use warnings;
use ExtUtils::MakeMaker 6.62;

WriteMakefile(
    NAME             => 'Parse::RecDescent',
    AUTHOR           => [
        'Damian Conway <DCONWAY@CPAN.org>',
        'Jeremy T. Braun <JTBRAUN@CPAN.org>',
    ],
    VERSION_FROM     => 'lib/Parse/RecDescent.pm',
    ABSTRACT_FROM    => 'lib/Parse/RecDescent.pm',
    LICENSE          => 'perl_5',
    PL_FILES         => {},
    BUILD_REQUIRES   => {
        'ExtUtils::MakeMaker' => 6.5702,
    },
    CONFIGURE_REQUIRES   => {
        'ExtUtils::MakeMaker' => 6.5702,
    },
    PREREQ_PM        => {
        'Text::Balanced' => 1.95,
        'Test::More'     => 0,
    },
    dist             => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean            => { FILES => 'Parse-RecDescent-* RD_TRACE' },

    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',
            },
        },
    },
);