-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
44 lines (37 loc) · 1.32 KB
/
Build.PL
File metadata and controls
44 lines (37 loc) · 1.32 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
use utf8;
use strict;
use warnings;
use Module::Build;
my $builder = Module::Build->new(
module_name => 'Compression::Util',
license => 'artistic_2',
dist_author => q<Daniel Șuteu>,
dist_version_from => 'lib/Compression/Util.pm',
release_status => 'stable',
sign => 1,
dynamic_config => 0,
extra_manify_args => {utf8 => 1},
configure_requires => {
'Module::Build' => 0,
},
build_requires => {
'Test::More' => 0,
},
meta_merge => {
resources => {
bugtracker => "https://github.com/trizen/Compression-Util/issues",
homepage => "https://github.com/trizen/Compression-Util",
repository => "https://github.com/trizen/Compression-Util",
},
},
requires => {
'perl' => '5.36.0',
'Test::More' => 0,
'List::Util' => '1.45',
'Exporter' => 0,
'Carp' => 0,
},
add_to_cleanup => ['Compression-Util-*'],
create_makefile_pl => 'traditional',
);
$builder->create_build_script();