File: Makefile.PL

package info (click to toggle)
libnet-amazon-s3-tools-perl 0.08-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 296 kB
  • sloc: perl: 770; makefile: 8
file content (25 lines) | stat: -rw-r--r-- 818 bytes parent folder | download | duplicates (4)
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 5.008008;
use ExtUtils::MakeMaker;
WriteMakefile(
    NAME              => 'Net::Amazon::S3::Tools',
    VERSION_FROM      => 'lib/Net/Amazon/S3/Tools.pm',
    PREREQ_PM         => {
	'Pod::Usage' => 1,
	'Getopt::Long' => 1,
	'Getopt::ArgvFile' => 0,
	'File::HomeDir' => 0,
	'Net::Amazon::S3' => 0,
	'Net::Amazon::S3::Bucket' => 0,
	# todo
	# Net::Amazon::S3 already uses XML::LibXML & XML::LibXML::XPathContext
	# so do rewrite to avoid need for XML::Writer
	'XML::Writer' => 0,
    },
    'EXE_FILES' => [ 's3acl', 's3ls',
		     's3get', 's3put',
		     's3rm', 
		     's3mkbucket', 's3rmbucket' ],
    ($] >= 5.005 ?     ## Add these new keywords supported since 5.005
      (ABSTRACT       => 'Command line tools for Amazon AWS S3',
       AUTHOR         => 'Mark Atwood <mark@fallenpegasus.com>') : ()),
);