-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
31 lines (28 loc) · 812 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
28
29
30
31
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'CPAN::Plugin::PkgDef',
license => 'perl',
dist_author => 'Branislav Zahradnik <[email protected]>',
dist_version_from => '1.0.0',
requires => {
'CPAN' => '2.06',
'CPAN::Plugin' => 0,
'CPAN::Shell' => 0,
'File::Path' => 0,
'File::Spec' => 0,
'POSIX' => 0,
},
build_requires => {
'Test::More' => 0,
},
add_to_cleanup => [ 'CPAN-Plugin-PkgDef-*' ],
meta_merge => {
resources => {
repository => 'https://github.com/happy-barney/perl-cpan-plugin-pkgdef',
bugtracker => 'https://github.com/happy-barney/perl-cpan-plugin-pkgdef/issues',
},
},
);
$builder->create_build_script();