-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathMakefile.PL
25 lines (24 loc) · 835 Bytes
/
Makefile.PL
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
use strict;
use warnings;
use ExtUtils::MakeMaker;
use 5.0073; # for Encode/utf8
WriteMakefile(
NAME => 'Amazon::SQS::Simple',
AUTHOR => 'Simon Whitaker <[email protected]>',
VERSION_FROM => 'lib/Amazon/SQS/Simple.pm',
ABSTRACT_FROM => 'lib/Amazon/SQS/Simple.pm',
PL_FILES => {},
PREREQ_PM => {
'AWS::Signature4' => 0,
'Test::More' => 0,
'Digest::SHA' => 0,
'LWP::UserAgent' => 0,
'MIME::Base64' => 0,
'Time::HiRes' => 0,
'URI::Escape' => 0,
'XML::Simple' => 0,
'VM::EC2::Security::CredentialCache' => 0,
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'Amazon-SQS-Simple-*' },
);