I've known about this issue before, but didn't realize it was so widespread. This fixes many links.
16 lines
312 B
Perl
16 lines
312 B
Perl
#!/usr/bin/perl
|
|
|
|
use Module::Build;
|
|
|
|
Module::Build->new(
|
|
dist_name => 'ManUtils',
|
|
dist_version_from => 'ManUtils.pm',
|
|
dist_abstract => 'Utils for manned.org',
|
|
pm_files => {
|
|
'ManUtils.pm' => 'lib/ManUtils.pm',
|
|
},
|
|
xs_files => {
|
|
'ManUtils.xs' => 'lib/ManUtils.xs',
|
|
},
|
|
)->create_build_script;
|
|
|