manned/lib/ManUtils/Build.PL
Yorhel 17fc298217 Fix handling of URLs ending in a ⟩
I've known about this issue before, but didn't realize it was so
widespread. This fixes many links.
2016-10-16 09:11:15 +02:00

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;