-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
34 lines (32 loc) · 997 Bytes
/
Build.PL
File metadata and controls
34 lines (32 loc) · 997 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
32
33
34
use 5.036;
use Module::Build;
Module::Build->VERSION('0.4004');
my $builder = Module::Build->new(
module_name => 'Sq',
license => 'mit',
dist_version_from => 'lib/Sq.pm',
release_status => 'stable',
recursive_test_files => 1,
configure_requires => {
'Module::Build' => '0.4004',
},
requires => {
'Carp' => '0',
'Scalar::Util' => '0',
'Hash::Util' => '0',
'List::Util' => '0',
},
test_requires => {
'Carp' => '0',
'Scalar::Util' => '0',
'Path::Tiny' => '0',
'List::Util' => '0',
'Digest::SHA' => '0',
'JSON' => '0',
'IO::Compress::Gzip' => '0',
'IO::Uncompress::Gunzip' => '0',
},
add_to_cleanup => [ 'Sq-*' ],
);
$builder->create_build_script();