perl/cpan/IO-Compress/Makefile.PL
Paul Marquess 81a76be29e cpan/IO-Compress - Update to version 2.213
2.213 28 August 2024

      * version 2.213
        Wed Aug 28 16:06:42 2024 +0100
        020520f78490bf1a6b7351febd16fc19f351ddfe

      * add perl5.40 to workflows
        Sun Jun 16 16:56:37 2024 +0100
        6d7dd85763f7cd0894a890208156187b8cac6597

      * #57 Add stub moduile IO/Compress.pm
        Sat May 25 08:53:57 2024 +0100
        c6a05a69d62b8169d482d1b30a333b0cec4f5a06
2024-08-28 14:32:20 -04:00

90 lines
2.3 KiB
Perl

#! perl -w
use strict ;
require 5.006 ;
$::VERSION = '2.213' ;
$::DEP_VERSION = '2.213';
use lib '.';
use private::MakeUtil;
use ExtUtils::MakeMaker 5.16 ;
UpDowngrade(getPerlFiles('MANIFEST'))
unless $ENV{PERL_CORE};
WriteMakefile(
NAME => 'IO::Compress',
VERSION_FROM => 'lib/IO/Compress/Base.pm',
'dist' => { COMPRESS => 'gzip',
TARFLAGS => '-chvf',
SUFFIX => 'gz',
DIST_DEFAULT => 'MyTrebleCheck tardist',
},
(
$ENV{SKIP_FOR_CORE}
? ()
: (PREREQ_PM => { 'Compress::Raw::Bzip2' => $::DEP_VERSION,
'Compress::Raw::Zlib' => $::DEP_VERSION,
'Scalar::Util' => 0,
'Encode' => 0,
'Time::Local' => 0,
$] >= 5.005 && $] < 5.006
? ('File::BSDGlob' => 0)
: () }
)
),
(
$] >= 5.005
? (ABSTRACT => 'IO Interface to compressed data files/buffers',
AUTHOR => 'Paul Marquess <pmqs@cpan.org>')
: ()
),
INSTALLDIRS => ($] >= 5.009 && $] < 5.011 ? 'perl' : 'site'),
EXE_FILES => ['bin/zipdetails', 'bin/streamzip'],
(
$] >= 5.009 && $] <= 5.011001 && ! $ENV{PERL_CORE}
? (INSTALLPRIVLIB => '$(INSTALLARCHLIB)')
: ()
),
( eval { ExtUtils::MakeMaker->VERSION(6.46) }
? ( META_MERGE => {
"meta-spec" => { version => 2 },
no_index => {
directory => [ 't', 'private' ],
},
resources => {
bugtracker => {
web => 'https://github.com/pmqs/IO-Compress/issues'
},
homepage => 'https://github.com/pmqs/IO-Compress',
repository => {
type => 'git',
url => 'git://github.com/pmqs/IO-Compress.git',
web => 'https://github.com/pmqs/IO-Compress',
},
},
}
)
: ()
),
((ExtUtils::MakeMaker->VERSION() gt '6.30') ?
('LICENSE' => 'perl') : ()),
) ;
# end of file Makefile.PL