File: Makefile.PL

package info (click to toggle)
libnet-amazon-s3-perl 0.44-3
  • links: PTS, VCS
  • area: main
  • in suites: lenny
  • size: 128 kB
  • ctags: 51
  • sloc: perl: 860; makefile: 42
file content (24 lines) | stat: -rw-r--r-- 768 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
#!perl
use strict;
use warnings;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME         => 'Net::Amazon::S3',
    VERSION_FROM => 'lib/Net/Amazon/S3.pm',
    AUTHOR       => 'Leon Brocard <acme@astray.com>',
    LICENSE      => 'perl',
    PREREQ_PM    => {
        'Class::Accessor::Fast'      => '0',
        'DateTime::Format::Strptime' => '0',
        'Digest::MD5::File'          => '0',
        'Digest::HMAC_SHA1'          => '0',
        'HTTP::Date'                 => '0',
        'LWP::UserAgent::Determined' => '0',
        'MIME::Base64'               => '0',
        'Test::More'                 => '0.01',
        'XML::LibXML'                => '0',
        'XML::LibXML::XPathContext'  => '0',
        'URI::Escape'                => '0',
    }
);