-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
44 lines (38 loc) · 1.19 KB
/
Copy pathBuild.PL
File metadata and controls
44 lines (38 loc) · 1.19 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
use utf8;
use 5.006;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Math::MatrixLUP',
license => 'artistic_2',
dist_author => q<Daniel Șuteu <trizen@cpan.org>>,
dist_version_from => 'lib/Math/MatrixLUP.pm',
release_status => 'stable',
sign => 1,
dynamic_config => 0,
extra_manify_args => { utf8 => 1 },
meta_merge => {
resources => {
bugtracker => "https://github.com/trizen/Math-MatrixLUP/issues",
homepage => "https://github.com/trizen/Math-MatrixLUP",
repository => "https://github.com/trizen/Math-MatrixLUP",
},
},
configure_requires => {
'Module::Build' => '0',
},
build_requires => {
'Test::More' => '0',
},
requires => {
perl => '5.010',
Carp => 0,
},
recommends => {
'Math::AnyNum' => '0.38',
},
add_to_cleanup => [ 'Math-MatrixLUP-*' ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();