-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
56 lines (46 loc) · 1.17 KB
/
Build.PL
File metadata and controls
56 lines (46 loc) · 1.17 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
use 5.010001;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Math::ContinuedFraction',
dist_author => q{John M. Gamble <jgamble@cpan.org>},
dist_abstract => 'Create and manipulate continued fractions',
dist_version => '0.14',
release_status => 'stable',
provides => {
'Math::ContinuedFraction' => {
file => 'lib/Math/ContinuedFraction.pm',
},
},
requires => {
perl => '5.10.1',
Carp => 0,
'Math::BigInt' => 1.999816,
'Math::BigRat' => 0.2611,
},
configure_requires => {
'Module::Build' => 0.4224,
},
build_requires => {
'Test::More' => 0,
},
license => 'perl',
create_license => 1,
create_readme => 0,
create_makefile_pl => 'traditional',
dynamic_config => 0,
add_to_cleanup => [ 'Math-ContinuedFraction-*' ],
meta_merge => {
keyword => [qw(math continued-fraction sequences)],
resources => {
repository => 'git://github.com/jgamble/Math-ContinuedFraction.git',
# repository => {
# url => 'git://github.com/jgamble/Math-ContinuedFraction.git',
# web => 'https://github.com/jgamble/Math-ContinuedFraction',
# type => 'git',
# },
},
},
);
$builder->create_build_script();