-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBuild.PL
47 lines (45 loc) · 1.42 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
42
43
44
45
46
47
#!/usr/bin/perl
use 5.012000; # CPAN Testers
use strict;
use warnings FATAL => 'all';
use Module::Build 0.37;
my $build = Module::Build->new(
module_name => 'App::Dochazka::WWW',
dist_author => q{Smithfarm <[email protected]>},
dist_abstract => 'Dochazka ATT system web client',
dist_version_from => 'lib/App/Dochazka/WWW.pm',
license => 'bsd',
create_license => 0,
create_readme => 0,
share_dir => {
dist => [ 'share' ],
},
script_files => [
'bin/dochazka-www',
],
configure_requires => {
'Module::Build' => 0.37,
'Software::License' => 0,
},
build_requires => {
'Test::Fatal' => 0,
'Params::Validate' => 1.06,
},
requires => {
'perl' => 5.012,
'App::CELL' => 0.196,
'App::MFILE::WWW' => 0.175,
# not really required, but designed to work with
#'App::Dochazka::REST' => 0.557,
'File::Temp' => 0,
},
meta_merge => {
resources => {
homepage => 'https://metacpan.org/pod/App::Dochazka::WWW',
repository => 'https://github.com/smithfarm/dochazka-www',
bugtracker => 'https://github.com/smithfarm/dochazka-www/issues',
}
},
add_to_cleanup => [ 'App-Dochazka-WWW-*' ],
);
$build->create_build_script;