Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathBuild.PL
More file actions
Latest commit
50 lines (41 loc) · 1.27 KB
/
Copy pathBuild.PL
File metadata and controls
50 lines (41 loc) · 1.27 KB
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
42
43
44
45
46
47
48
49
50
use strict;
use warnings;
use Module::Build;
# See perldoc Module::Build for details of how this works
Module::Build->new (
module_name=>'LabKey::Query',
dist_author=> ['LabKey Software <info@labkey.com>'],
dist_abstract=>'For interacting with data in LabKey Server',
dist_name=>'LabKey-Query',
dist_version_from=>'lib/LabKey/Query.pm',
license=>'apache',
create_license=> 1,
create_readme=> 0,
provides=> {
'LabKey::Query'=> {
file=>'lib/LabKey/Query.pm'
}
},
requires=> {
'LWP::UserAgent'=> 0,
'HTTP::Request'=> 0,
'Data::Dumper'=> 0,
'JSON'=> 2,
'File::Spec'=> 0,
'File::HomeDir'=> 0,
'FileHandle'=> 0,
'URI'=> 0,
'Carp'=> 0,
},
configure_requires=> {
'Module::Build'=> 0.42
},
add_to_cleanup=> [ 'LabKey-Query-*' ],
meta_merge=> {
resources=> {
homepage=>'https://www.labkey.org/Documentation/wiki-page.view?name=viewAPIs',
issues=>'https://www.labkey.org/home/Developer/issues/issues-list.view?issues-issues.area~eq=Perl%20Client%20API',
repository=>'https://github.com/LabKey/labkey-api-perl'
}
}
)->create_build_script;