-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathBuild.PL
More file actions
34 lines (31 loc) · 925 Bytes
/
Build.PL
File metadata and controls
34 lines (31 loc) · 925 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 strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'SocialFlow::S3',
dist_abstract => 'Amazon S3 tool for Socialflow',
requires => {
'Cwd' => 0,
'Future' => '0.22', # ->done when cancelled bugfix
'Future::Utils' => '0.22', # fmap_scalar
'IO::Async::Notifier' => 0,
'IO::Async::Loop' => 0,
'IO::Async::Timer::Periodic' => 0,
'IO::Termios' => 0,
'List::UtilsBy' => 0,
'Net::Async::HTTP' => '0.33',
'Net::Async::Webservice::S3' => '0.18',
'POSIX::strptime' => 0,
'Term::Size' => 0,
'YAML' => 0,
},
build_requires => {
'File::Temp' => 0,
'Test::More' => '0.88', # done_testing
'Test::Refcount' => 0,
},
auto_configure_requires => 0, # Don't add M::B to configure_requires
create_makefile_pl => 'traditional',
create_readme => 1,
);
$build->create_build_script;