-
Notifications
You must be signed in to change notification settings - Fork 1
/
Build.PL
42 lines (40 loc) · 1.28 KB
/
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
34
35
36
37
38
39
40
41
use Module::Build;
my $build = Module::Build->new(
license => 'perl',
dist_author => 'Dave Cross <dave@perlhacks.com>',
module_name => 'Net::Songkick',
license => 'perl',
requires => {
perl => '5.6.0',
LWP::UserAgent => 0,
Moose => 0,
URI => 0,
JSON => 0,
DateTime::Format::Strptime => 0,
},
test_recommends => {
Test::Pod => 0,
Test::Pod::Coverage => 0,
HTTP::Request => 0,
},
test_requires => {
Test::LWP::UserAgent => 0,
HTTP::Response => 0,
},
create_makefile_pl => 'traditional',
script_files => [ 'bin/gigs' ],
meta_merge => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
url => 'https://github.com/davorg-cpan/net-songkick.git',
web => 'https://github.com/davorg-cpan/net-songkick',
},
bugtracker => {
web => 'https://github.com/davorg-cpan/net-songkick/issues',
},
},
},
);
$build->create_build_script;