-
Notifications
You must be signed in to change notification settings - Fork 10
/
Build.PL
37 lines (35 loc) · 1009 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
34
35
36
37
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Fennec',
license => 'perl',
dist_author => 'Chad Granum <[email protected]>',
create_readme => 1,
requires => {
'Carp' => 0,
'Child' => '0.010',
'Exporter::Declare' => 0,
'Mock::Quick' => '1.106',
'Parallel::Runner' => '0.013',
'Scalar::Util' => 0,
'List::Util' => 0,
'Test::Exception' => '0.29',
'Test::Simple' => '0.88',
'Test::Warn' => 0,
},
recommends => {
'Fennec::Declare' => '1.001',
},
build_requires => {
},
meta_merge => {
resources => {
repository => 'http://github.com/exodist/Fennec',
bugtracker => 'http://github.com/exodist/Fennec/issues',
homepage => 'http://exodist.github.io/Fennec/'
},
},
);
$build->create_build_script;