From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

# autogenerated by /home/rlauer/bin/make-cpan-dist.pl on Tue Feb 25 16:31:05 2025
use strict;
if ( -d 'share' ) {
install_share 'share';
}
WriteMakefile(
NAME => 'OrePAN2::S3',
MIN_PERL_VERSION => '5.010',
AUTHOR => 'Rob Lauer <rlauer6@comcast.net>',
VERSION_FROM => 'lib/OrePAN2/S3.pm',
ABSTRACT => 'OrePAN2::S3',
LICENSE => 'perl',
PL_FILES => {},
EXE_FILES => [ 'bin/create-insecure-bucket', 'bin/orepan2-s3', 'bin/orepan2-s3-index' ],
PREREQ_PM => {
'Amazon::Credentials' => '0',
'Amazon::S3' => '0',
'Archive::Tar' => '0',
'Bedrock::Template' => '0',
'CLI::Simple' => '0',
'JSON' => '0',
'OrePAN2::Index' => '0',
'Readonly' => '0',
'YAML' => '0'
},
BUILD_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64',
'File::ShareDir::Install' => 0,
},
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '6.64',
'File::ShareDir::Install' => 0,
},
TEST_REQUIRES => { 'Test::More' => '0' },
META_MERGE => {
'meta-spec' => { 'version' => 2 },
'provides' => {
'OrePAN2::S3' => {
'file' => 'lib/OrePAN2/S3.pm',
'version' => '0.01'
}
},
'resources' => {
'bugtracker' => {
'mailto' => 'rlauer6@comcast.net',
},
'repository' => {
'type' => 'git',
}
}
}
);
package MY;
use English qw(-no_match_vars);
sub postamble {
my $self = shift;
my @ret = File::ShareDir::Install::postamble($self);
my $postamble = join "\n", @ret;
if ( -e 'postamble' ) {
local $RS = undef;
open my $fh, '<', 'postamble'
or die "could not open postamble\n";
$postamble .= <$fh>;
close $fh;
}
return $postamble;
}
1;