File: Makefile.PL

package info (click to toggle)
libnet-amazon-s3-perl 0.56-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 288 kB
  • sloc: perl: 2,264; makefile: 7
file content (35 lines) | stat: -rw-r--r-- 1,325 bytes parent folder | download
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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME         => 'Net::Amazon::S3',
    VERSION_FROM => 'lib/Net/Amazon/S3.pm',
    AUTHOR       => 'Pedro Figueiredo <me@pedrofigueiredo.org>',
    ABSTRACT     => 'Use the Amazon S3 - Simple Storage Service',
    LICENSE      => 'perl',
    PREREQ_PM    => {
        'Class::MOP'                 => '0.88',
        'Data::Stream::Bulk'         => '0.06',
        'DateTime::Format::HTTP'     => '0',
        'DateTime::Format::ISO8601'  => '0',
        'Digest::HMAC_SHA1'          => '0',
        'Digest::MD5'                => '0',
        'Digest::MD5::File'          => '0',
        'File::stat'                 => '0',
        'HTTP::Date'                 => '0',
        'HTTP::Status'               => '0',
        'IO::File'                   => '1.14',
        'LWP::UserAgent::Determined' => '0',
        'MIME::Base64'               => '0',
        'Moose'                      => '0.85',
        'MooseX::StrictConstructor'  => '0.16',
        'Test::More'                 => '0.01',
        'Regexp::Common'             => '0',
        'XML::LibXML'                => '0',
        'XML::LibXML::XPathContext'  => '0',
        'URI::Escape'                => '0',
        'MooseX::Types::DateTime::MoreCoercions' => '0.07',
    }
);