-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
27 lines (25 loc) · 830 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 => 'Text::KnuthPlass',
license => 'Perl',
dist_author => q{Phil Perry},
dist_version_from => 'lib/Text/KnuthPlass.pm',
include_dirs => ['.'],
build_requires => {
'Test::More' => 0, # for t-test
'Text::Hyphen' => 0,
'Class::Accessor' => 0,
'JSON::Syck' => 0, # for t-test
},
add_to_cleanup => [ 'Text-KnuthPlass-*' ],
meta_merge => {
resources => {
'repository' => 'https://github.com/PhilterPaper/Text-KnuthPlass',
'bugtracker' => 'https://github.com/PhilterPaper/Text-KnuthPlass/issues',
'homepage' => 'https://metacpan.org/pod/Text::KnuthPlass',
},
},
);
$builder->create_build_script();