-
Notifications
You must be signed in to change notification settings - Fork 7
/
Build.PL
37 lines (35 loc) · 882 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
use Module::Build;
my $build = Module::Build->new(
module_name => 'Number::Fraction',
license => 'perl',
requires => {
perl => '5.10.0',
Carp => 0,
overload => 0,
Moo => 0,
Types::Standard => 0,
},
build_requires => {
'Test::More' => 0,
'Test::Warn' => 0,
},
build_recommends => {
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
},
create_makefile_pl => 'traditional',
meta_merge => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/p5-number-fraction/number-fraction.git',
web => 'https://github.com/p5-number-fraction/number-fraction',
},
bugtracker => {
web => 'https://github.com/p5-number-fraction/number-fraction/issues',
},
},
},
);
$build->create_build_script;