Dave Cross: Still Munging Data With Perl: Online event - Mar 17 Learn more

use 5.016;
use strict;
my %WriteMakefileArgs = (
NAME => 'EBook::Ishmael',
AUTHOR => q{Samuel Young <samyoung12788@gmail.com>},
VERSION_FROM => 'lib/EBook/Ishmael.pm',
ABSTRACT_FROM => 'lib/EBook/Ishmael.pm',
LICENSE => 'gpl_3',
MIN_PERL_VERSION => '5.016',
CONFIGURE_REQUIRES => {
'ExtUtils::MakeMaker' => '0',
},
TEST_REQUIRES => {
'Test::More' => '0',
'File::Path' => '0',
'File::Temp' => '0.10',
'File::Spec' => '0',
},
PREREQ_PM => {
'Archive::Zip' => '0',
'Compress::Zlib' => '0',
'Cwd' => '0',
'File::Basename' => '0',
'File::Path' => '0',
'File::Spec' => '0',
'File::Temp' => '0.10',
'File::Which' => '0',
'JSON' => '0',
'List::Util' => '0',
'MIME::Base64' => '0',
'XML::LibXML' => '1.70',
},
EXE_FILES => [
'bin/ishmael',
'bin/queequeg',
],
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
},
bugtracker => {
},
},
},
dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
clean => { FILES => 'EBook-Ishmael-*' },
);
# Compatibility with old versions of ExtUtils::MakeMaker
unless (eval { ExtUtils::MakeMaker->VERSION('6.64'); 1 }) {
my $test_requires = delete $WriteMakefileArgs{TEST_REQUIRES} || {};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$test_requires} = values %$test_requires;
}
unless (eval { ExtUtils::MakeMaker->VERSION('6.55_03'); 1 }) {
my $build_requires = delete $WriteMakefileArgs{BUILD_REQUIRES} || {};
@{$WriteMakefileArgs{PREREQ_PM}}{keys %$build_requires} = values %$build_requires;
}
delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
unless eval { ExtUtils::MakeMaker->VERSION('6.52'); 1 };
delete $WriteMakefileArgs{MIN_PERL_VERSION}
unless eval { ExtUtils::MakeMaker->VERSION('6.48'); 1 };
delete $WriteMakefileArgs{LICENSE}
unless eval { ExtUtils::MakeMaker->VERSION('6.31'); 1 };
delete $WriteMakefileArgs{META_MERGE}
unless eval { ExtUtils::MakeMaker->VERSION('6.46'); 1 };
WriteMakefile(%WriteMakefileArgs);