34 lines
990 B
Perl
Executable File
34 lines
990 B
Perl
Executable File
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();
|