forked from lkundrak/www-gooddata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
31 lines (28 loc) · 638 Bytes
/
Build.PL
File metadata and controls
31 lines (28 loc) · 638 Bytes
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 $build = Module::Build->new(
module_name => 'WWW::GoodData',
license => 'perl',
dist_author => 'Lubomir Rintel <lkundrak@v3.sk>',
dist_version => '1.7',
meta_merge => {
resources => {
bugtracker => 'http://rt.cpan.org/NoAuth/Bugs.html?Dist=WWW-GoodData',
repository => 'https://github.com/lkundrak/www-gooddata',
}
},
requires => {
'Getopt::Long' => '2.36',
'JSON' => 0,
'Pod::Usage' => 0,
'Text::ParseWords' => 0,
'IO::Socket::SSL' => 0,
'LWP::UserAgent' => 0,
},
build_requires => {
'Test::Pod' => 0,
'JSON' => 0,
},
);
$build->create_build_script;