-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
27 lines (24 loc) · 819 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(
meta_merge => {
resources => {
repository => 'http://github.com/duncs/perl-test-noplan',
bugtracker =>
'https://rt.cpan.org/Public/Dist/Display.html?Name=Test-NoPlan',
homepage => 'http://github.com/duncs/perl-test-noplan',
},
},
module_name => 'Test::NoPlan',
license => 'perl',
dist_author => 'Duncan Ferguson <[email protected]>',
dist_version_from => 'lib/Test/NoPlan.pm',
build_requires => {
'version' => 0,
'Test::More' => 0,
},
add_to_cleanup => [ 'Test-NoPlan-*', 'Debian_CPANTS.txt', ],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();