diff options
author | Steve Hay <steve.m.hay@googlemail.com> | 2013-10-23 10:32:25 +0100 |
---|---|---|
committer | Steve Hay <steve.m.hay@googlemail.com> | 2013-10-25 08:27:44 +0100 |
commit | f6d098c6aa26a223a4250725da6a7784102e19a6 (patch) | |
tree | a2e104818aa67f49398811df6c23167f58a14320 /cpan/IO-Compress | |
parent | b54f893dc956463c59f2f0ee0ec913515bacd4c1 (diff) | |
download | perl-f6d098c6aa26a223a4250725da6a7784102e19a6.tar.gz |
Remove some unnecessary Makefile.PLs from cpan/ and ext/
These modules all work with the default Makefile.PL written by make_ext.pl.
(There are more Makefile.PLs in dist/ that could be removed too, but the
general policy with dist/ is to leave such files in place to make it easier
to roll CPAN releases from the blead source, which is canonical.)
Diffstat (limited to 'cpan/IO-Compress')
-rw-r--r-- | cpan/IO-Compress/Makefile.PL | 64 |
1 files changed, 0 insertions, 64 deletions
diff --git a/cpan/IO-Compress/Makefile.PL b/cpan/IO-Compress/Makefile.PL deleted file mode 100644 index c1d188d296..0000000000 --- a/cpan/IO-Compress/Makefile.PL +++ /dev/null @@ -1,64 +0,0 @@ -#! perl -w - -use strict ; -require 5.006 ; - -$::VERSION = '2.062' ; - -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' => $::VERSION, - 'Compress::Raw::Zlib' => $::VERSION, - 'Scalar::Util' => 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'], - - ( - $] >= 5.009 && $] <= 5.011001 && ! $ENV{PERL_CORE} - ? (INSTALLPRIVLIB => '$(INSTALLARCHLIB)') - : () - ), - - META_MERGE => { - no_index => { - directory => [ 't', 'private' ], - }, - }, - - ((ExtUtils::MakeMaker->VERSION() gt '6.30') ? - ('LICENSE' => 'perl') : ()), - -) ; - -# end of file Makefile.PL - |