forked from leto/math--matrixreal
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBuild.PL
27 lines (25 loc) · 821 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
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Math::MatrixReal',
license => 'perl',
dist_author => 'Jonathan Leto <[email protected]>',
dist_version_from => 'lib/Math/MatrixReal.pm',
dist_abstract => 'Manipulate NxN matrices of real numbers',
license => 'perl',
build_requires => {
'Test::Most' => 0,
'File::Spec' => 0,
},
configure_requires => { 'Module::Build' => 0.38 },
add_to_cleanup => [ 'Math::MatrixReal-*' ],
create_makefile_pl => 'traditional',
meta_merge => {
resources => {
repository => 'http://github.com/leto/math--matrixreal/tree/master'
},
},
);
$builder->create_build_script();
print "Have an awesome day!\n";