File: Makefile.PL

package info (click to toggle)
libparse-recdescent-perl 1.967013%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 772 kB
  • ctags: 780
  • sloc: perl: 6,796; sh: 54; makefile: 13; ansic: 9
file content (26 lines) | stat: -rwxr-xr-x 760 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
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',
    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' },
);