-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathMakefile.PL
executable file
·41 lines (39 loc) · 1.23 KB
/
Makefile.PL
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 <[email protected]>',
'Jeremy T. Braun <[email protected]>',
],
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',
},
},
},
);