Skip to content

Commit

Permalink
Add repo and license to Build.PL
Browse files Browse the repository at this point in the history
  • Loading branch information
leto committed Apr 11, 2011
1 parent 915e01f commit 9832a2c
Showing 1 changed file with 12 additions and 6 deletions.
18 changes: 12 additions & 6 deletions Build.PL
Expand Up @@ -3,17 +3,23 @@ use warnings;
use Module::Build;

my $builder = Module::Build->new(
module_name => 'Math::MatrixReal',
license => 'perl',
dist_author => 'Jonathan Leto <jonathan@leto.net>',
dist_version_from => 'lib/Math/MatrixReal.pm',
dist_abstract => 'Manipulate NxN matrices of real numbers',
module_name => 'Math::MatrixReal',
license => 'perl',
dist_author => 'Jonathan Leto <jonathan@leto.net>',
dist_version_from => 'lib/Math/MatrixReal.pm',
dist_abstract => 'Manipulate NxN matrices of real numbers',
license => 'perl',
build_requires => {
'Test::More' => 0,
'File::Spec' => 0,
'File::Spec' => 0,
},
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();

0 comments on commit 9832a2c

Please sign in to comment.