File: Makefile.PL

package info (click to toggle)
libamazon-s3-perl 0.65-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 444 kB
  • sloc: perl: 2,914; makefile: 4
file content (97 lines) | stat: -rw-r--r-- 2,770 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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
# autogenerated by /usr/local/libexec/make-cpan-dist.pl on Tue Nov 28 17:53:18 2023

use strict;
use warnings;

use ExtUtils::MakeMaker;
use File::ShareDir::Install;

if ( -d 'share' ) {
  install_share 'share';
}

WriteMakefile(
  NAME             => 'Amazon::S3',
  MIN_PERL_VERSION => '5.10.0',
  AUTHOR           => 'Rob Lauer <rlauer6@comcat.net>',
  VERSION_FROM     => 'lib/Amazon/S3.pm',
  ABSTRACT         => 'Perl interface to AWS S3 API',
  LICENSE          => 'perl',
  PL_FILES         => {},
  EXE_FILES        => [],
  PREREQ_PM        => {
    'Class::Accessor::Fast'      => '0',
    'Digest::HMAC_SHA1'          => '0',
    'Digest::MD5::File'          => '0',
    'HTTP::Date'                 => '0',
    'IO::Scalar'                 => '0',
    'JSON::PP'                   => '0',
    'LWP'                        => '0',
    'LWP::Protocol::https'       => '0',
    'LWP::UserAgent::Determined' => '0',
    'List::Util'                 => '1.5',
    'Net::Amazon::Signature::V4' => '0',
    'Net::HTTP'                  => '0',
    'Pod::Markdown'              => '0',
    'Readonly'                   => '0',
    'URI'                        => '0',
    'URI::Escape'                => '0',
    'XML::Simple'                => '0'
  },
  BUILD_REQUIRES => {
    'ExtUtils::MakeMaker'     => '6.64',
    'File::ShareDir::Install' => 0,
  },
  CONFIGURE_REQUIRES => {
    'ExtUtils::MakeMaker'     => '6.64',
    'File::ShareDir::Install' => 0,
  },
  TEST_REQUIRES => {
    'Digest::MD5::File' => '0.08',
    'Test::More'        => '1.302190',
    'Test::Output'      => '1.033'
  },
  META_MERGE => {
    'meta-spec' => { 'version' => 2 },
    'provides'  => {
      'Amazon::S3' => {
        'file'    => 'lib/Amazon/S3.pm',
        'version' => '0.65'
      },
      'Amazon::S3::Bucket' => {
        'file'    => 'lib/Amazon/S3/Bucket.pm',
        'version' => '0.65'
      },
      'Amazon::S3::Constants' => {
        'file'    => 'lib/Amazon/S3/Constants.pm',
        'version' => '0.65'
      },
      'Amazon::S3::Logger' => {
        'file'    => 'lib/Amazon/S3/Logger.pm',
        'version' => '0.65'
      },
      'Amazon::S3::Signature::V4' => {
        'file'    => 'lib/Amazon/S3/Signature/V4.pm',
        'version' => 'undef'
      }
    },
    'resources' => {
      'bugtracker' => {
        'mailto' => 'rlauer6@comcast.net',
        'web'    => 'http://github.com/rlauer6/perl-amazon-s3/issues'
      },
      'homepage'   => 'http://github.com/rlauer6/perl-amazon-s3',
      'repository' => {
        'type' => 'git',
        'url'  => 'git://github.com/rlauer6/perl-amazon-s3.git',
        'web'  => 'http://github.com/rlauer6/perl-amazon-s3'
      }
    }
  }

);

package MY;

use File::ShareDir::Install qw( postamble );