~ubuntu-branches/ubuntu/natty/libamazon-sqs-simple-perl/natty

« back to all changes in this revision

Viewing changes to Makefile.PL

  • Committer: Bazaar Package Importer
  • Author(s): Thierry Carrez
  • Date: 2010-02-16 14:29:13 UTC
  • Revision ID: james.westby@ubuntu.com-20100216142913-keyrxsi00ko2v1v0
Tags: upstream-1.03
ImportĀ upstreamĀ versionĀ 1.03

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
use strict;
 
2
use warnings;
 
3
use ExtUtils::MakeMaker;
 
4
 
 
5
WriteMakefile(
 
6
    NAME                => 'Amazon::SQS::Simple',
 
7
    AUTHOR              => 'Simon Whitaker <sw@netcetera.org>',
 
8
    VERSION_FROM        => 'lib/Amazon/SQS/Simple.pm',
 
9
    ABSTRACT_FROM       => 'lib/Amazon/SQS/Simple.pm',
 
10
    PL_FILES            => {},
 
11
    PREREQ_PM => {
 
12
        'Test::More'        => 0,
 
13
        'Digest::HMAC_SHA1' => 0,
 
14
        'LWP::UserAgent'    => 0,
 
15
        'MIME::Base64'      => 0,
 
16
        'URI::Escape'       => 0,
 
17
        'XML::Simple'       => 0,
 
18
    },
 
19
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
 
20
    clean               => { FILES => 'Amazon-SQS-Simple-*' },
 
21
);