-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathBuild.PL
executable file
·33 lines (31 loc) · 990 Bytes
/
Build.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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Parse::RecDescent',
license => 'perl',
dist_author => [
'Damian Conway <[email protected]>',
'Jeremy T. Braun <[email protected]>',
],
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();