CPAN-Mini-Inject

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

package CPAN::Mini::Inject;
use strict;
use warnings;

=encoding utf8

=head1 The build file for CPAN::Mini::Inject

This build file is a modulino; it works as both a build script and
a module.

To build the distribution, run this file normally:

	% perl Makefile.PL

But, it's more interesting than that. You can load it with C<require>
and call C<arguments> to get the data structure it passes to
C<WriteMakefile>:

	my $package = require '/path/to/Makefile.PL';
	my $arguments = $package->arguments;

Note that C<require>-ing a file makes an entry in C<%INC> for exactly
that name. If you try to C<require> another file with the same name,
even from a different path, C<require> thinks it has already loaded
the file. As such, I recommend you always require the full path to the
file.

The return value of the C<require> is a package name (in this case,
the name of the main module. Use that to call the C<arguments> method.

Even if this distribution needs a higher version of Perl, this bit
only needs v5.8. You can play with the data structure with a primitive
Perl.

=cut

use File::Spec::Functions qw(catfile);

my $module    = __PACKAGE__;
( my $dist = $module ) =~ s/::/-/g;

my $github    = 'https://github.com/briandfoy/cpan-mini-inject';
my $main_file = catfile( 'lib', split /::/, "$module.pm" );

my %WriteMakefile = (
	'MIN_PERL_VERSION' => '5.016',  # from CPAN::Checksums

	'NAME'          => $module,
	'ABSTRACT_FROM' => $main_file,
	'VERSION_FROM'  => $main_file,
	'LICENSE'		=> 'perl',
	'AUTHOR'		=> 'Shawn Sorichetti <ssoriche@cpan.org>',

  	'CONFIGURE_REQUIRES' => {
		'ExtUtils::MakeMaker' => '6.64',
		},

	'BUILD_REQUIRES' => {
		},

	'TEST_REQUIRES' => {
		'HTTP::Daemon'          => '0',
		'Net::EmptyPort'        => '0',
		'Test::More'            => '1',
		},

	'PREREQ_PM'     => {
		'Carp'                      => '0',
		'Compress::Zlib'            => '0',
		'CPAN::Checksums'           => '2.13',
		'CPAN::Meta'                => '2.150010',
		'CPAN::Mini'                => '0.32',
		'Dist::Metadata'            => '0.921',
		'File::Basename'            => '0',
		'File::Copy'                => '0',
		'File::Path'                => '2.07',
		'File::Slurp'               => '0',
		'File::Spec::Functions'     => '0',
		'File::Spec'                => '2.07',



( run in 0.962 second using v1.01-cache-2.11-cpan-22024b96cdf )