-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuild.PL
59 lines (49 loc) · 1.31 KB
/
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
use 5.010001;
use Module::Build;
use strict;
use warnings;
my $build = Module::Build->new(
module_name => 'Math::Polynomial::Solve',
dist_abstract => 'Find the roots of polynomial equations',
dist_author => ['John M. Gamble <[email protected]>'],
dist_version => '2.86',
dist_name => 'Math-Polynomial-Solve',
provides => {
'Math::Polynomial::Solve' => {
file => 'lib/Math/Polynomial/Solve.pm',
},
},
requires => {
perl=> '5.10.1',
'Math::Complex'=> '1.36', # Bugfix of Im().
'Math::Utils' => '1.12',
},
configure_requires => {
'Module::Build' => '0.4',
},
build_requires => {
'Test::More' => 0
},
license => 'perl',
create_license => 1,
create_readme => 0,
create_makefile_pl => 'traditional',
dynamic_config => 0,
release_status => 'stable',
add_to_cleanup => [ 'Math-Polynomial-Solve-*' ],
meta_merge => {
keyword => [ qw(math polynomial quadratic cubic quartic matrix
companion-matrix polynomial-zeros
Sturm Nickalls Ferrari Laguerre Hessenberg
Newton-Raphson) ],
resources => {
repository => 'git://github.com/jgamble/Math-Polynomial-Solve.git',
# repository => {
# url => 'git://github.com/jgamble/Math-Polynomial-Solve',
# web => 'https://github.com/jgamble/Math-Polynomial-Solve',
# type => 'git',
# },
},
},
);
$build->create_build_script;