forked from exodist/Mock-Quick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
29 lines (27 loc) · 740 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
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'Mock::Quick',
license => 'perl',
dist_author => 'Chad Granum <[email protected]>',
create_readme => 1,
requires => {
'Carp' => 0,
'Scalar::Util' => 0,
'Exporter::Declare' => '0.103',
},
build_requires => {
'Test::Simple' => 0.88,
'Test::Exception' => 0.29,
'Fennec::Lite' => '0.004',
},
meta_merge => {
resources => {
repository => 'http://github.com/exodist/Mock-Quick',
bugtracker => 'http://github.com/exodist/Mock-Quick/issues',
},
}
);
$build->create_build_script;