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',
    }
);
 
     |