File: Build.PL

package info (click to toggle)
libvm-ec2-perl 1.28-5
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,556 kB
  • sloc: perl: 12,047; makefile: 8
file content (34 lines) | stat: -rw-r--r-- 853 bytes parent folder | download | duplicates (4)
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
#!/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 <lincoln.stein@oicr.on.ca>',
    configure_requires => { 'Module::Build' => 0 },
    requires          => {
      'LWP' => 5.835,
      'MIME::Base64' => '3.08',
      'Digest::SHA'  => '5.47',
      'URI::URL'     => '5.03',
      'XML::Simple'  => '2.18',
      'File::Path'   => '2.08',
      '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;