The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
use ExtUtils::MakeMaker;

# ----------------

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

my(%params) =
(
	($] ge '5.005') ?
	(
		AUTHOR   => 'Ron Savage (ron@savage.net.au)',
		ABSTRACT => 'Parse GEDCOM dates in French r/German/Gregorian/Hebrew/Julian',
	) : (),
	clean =>
	{
		FILES => 'blib/* Makefile MANIFEST Genealogy-Gedcom-Date-*'
	},
	dist =>
	{
		COMPRESS => 'gzip',
		SUFFIX   => 'gz'
	},
	DISTNAME  => 'Genealogy-Gedcom-Date',
	NAME      => 'Genealogy::Gedcom::Date',
	LICENSE   => 'artistic_2',
	PL_FILES  => {},
	PREREQ_PM =>
	{
		'Config'       => 0,
		'Data::Dumper::Concise' => 2.022,
		'Getopt::Long' => 0,
		'Log::Handler' => 0.84,
		'Marpa::R2'    => 3.000000,
		'Moo'          => 2.000002,
		'Pod::Usage'   => 0,
		'strict'       => 0,
		'Test::Stream' => 1.302020,
		'Try::Tiny'    => 0.22,
		'Type::Tiny'   => 1.000005,
		'utf8'         => 0,
		'warnings'     => 0,
	},
	VERSION_FROM => 'lib/Genealogy/Gedcom/Date.pm',
);

if ( ($ExtUtils::MakeMaker::VERSION =~ /^\d\.\d\d$/) && ($ExtUtils::MakeMaker::VERSION > 6.30) )
{
	$params{LICENSE} = 'artistic_2';
}

if ($ExtUtils::MakeMaker::VERSION ge '6.46')
{
	$params{META_MERGE} =
	{
		'meta-spec' =>
		{
			'version' => 2,
		},
		resources   =>
		{
			'bugtracker' => 'https://rt.cpan.org/Public/Dist/Display.html?Name=Genealogy-Gedcom-Date',
			'license'    => 'http://opensource.org/licenses/Artistic-2.0',
			repository   =>
			{
				'type' => 'git',
				'url' => 'https://github.com/ronsavage/Genealogy-Gedcom-Date.git',
				'web' => 'https://github.com/ronsavage/Genealogy-Gedcom-Date',
			},
		},
	};
}

WriteMakefile(%params);