-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
30 lines (28 loc) · 818 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
use 5.008;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Smart::Comments',
license => 'perl',
dist_author => 'Damian Conway <[email protected]>',
dist_version_from => 'lib/Smart/Comments.pm',
requires => {
'version' => 0,
'Text::Balanced' => 2.0,
'Data::Dumper' => 0,
'Filter::Simple' => 0.80,
'List::Util' => 0,
'perl' => 5.008,
},
build_requires => {
'Test::More' => 0,
},
meta_merge => {
resources=> {
repository => 'http://github.com/chorny/smart-comments/tree/master',
},
keywords => ['Smart comments','perl debugging','development'],
},
);
$builder->create_build_script();