forked from theory/fsa-rules
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
28 lines (27 loc) · 903 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
use Module::Build;
my $build = Module::Build->new(
module_name => 'FSA::Rules',
license => 'perl',
create_makefile_pl => 'traditional',
requires => { perl => 5.006_002 },
configure_requires => { 'Module::Build' => '0.2701' },
build_requires => {
'Module::Build' => '0.2701',
'Test::More' => '0.17',
},
recommends => {
'GraphViz' => '2.00',
'Text::Wrap' => 0,
'Storable' => '2.05',
'B::Deparse' => '0.61',
'Test::Pod' => '1.41',
},
meta_merge => {
resources => {
homepage => 'http://search.cpan.org/dist/FSA-Rules/',
bugtracker => 'http://github.com/theory/fsa-rules/issues/',
repository => 'http://github.com/theory/fsa-rules/',
}
},
);
$build->create_build_script;