-
Notifications
You must be signed in to change notification settings - Fork 17
/
Build.PL
37 lines (33 loc) · 948 Bytes
/
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
#!/usr/bin/perl
use strict;
use warnings;
use Module::Build;
my $build = Module::Build->new(
module_name => 'VM-EC2',
license => 'perl',
dist_version_from => 'lib/VM/EC2.pm',
dist_author => 'Lincoln Stein <[email protected]>',
configure_requires => { 'Module::Build' => 0 },
requires => {
'Config::IniFiles' => 0,
'File::HomeDir' => 0,
'LWP' => 5.835,
'MIME::Base64' => '3.08',
'Digest::SHA' => '5.47',
'URI::URL' => '5.03',
'XML::Simple' => '2.18',
'File::Path' => '2.08',
'File::Spec' => 0,
'String::Approx' => '3.26',
'JSON' => 0,
'AnyEvent' => '7.04',
'AnyEvent::HTTP' => '2.15',
'AnyEvent::CacheDNS' => '0.08',
},
recommends => {
'AWS::Signature4' => '1.00',
},
build_class => 'Module::Build',
);
$build->create_build_script;
exit 0;