-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathBuild.PL
33 lines (32 loc) · 898 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
32
33
use Module::Build;
my $build = Module::Build->new(
module_name => 'Tie::Hash::Cannabinol',
license => 'perl',
requires => {
perl => '5.6.0',
'Tie::Hash' => 0,
'Attribute::Handlers' => 0,
},
build_requires => {
'Test::More' => 0,
},
build_recommends => {
'Test::Pod' => 0,
'Test::Pod::Coverage' => 0,
},
create_makefile_pl => 'traditional',
meta_merge => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'git://github.com/davorg-cpan/tie-hash-cannabinol.git',
web => 'https://github.com/davorg-cpan/tie-hash-cannabinol',
},
bugtracker => {
web => 'https://github.com/davorg-cpan/tie-hash-cannabinol/issues',
},
},
},
);
$build->create_build_script;