The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

use strict;
use ExtUtils::MakeMaker 6.64; # 6.64 for TEST_REQUIRES
my $dist = {
COMPRESS => 'gzip -9f',
SUFFIX => 'gz'
};
if($^O eq 'darwin') {
$dist->{'TAR'} = 'gtar';
}
WriteMakefile(
NAME => 'DateTime::Format::Genealogy',
AUTHOR => q{Nigel Horne <njh@bandsman.co.uk>},
VERSION_FROM => 'lib/DateTime/Format/Genealogy.pm',
ABSTRACT_FROM => 'lib/DateTime/Format/Genealogy.pm',
((defined($ExtUtils::MakeMaker::VERSION) &&
($ExtUtils::MakeMaker::VERSION >= 6.3002))
? ('LICENSE'=> 'GPL')
: ()),
PL_FILES => {},
TEST_REQUIRES => {
'Data::Dumper' => 0,
'English' => 0,
'File::Spec' => 0 ,
'Test::CleanNamespaces' => 0,
'Test::Carp' => 0,
'Test::Compile' => 0,
'Test::Deep' => 0,
'Test::DescribeMe' => 0,
'Test::Most' => 0,
'Test::Needs' => 0,
'Test::NoWarnings' => 0,
'Test::Warn' => 0,
'strict' => 0,
'warnings' => 0,
'WWW::RT::CPAN' => 0
}, PREREQ_PM => {
'Carp' => 0,
'DateTime::Format::Natural' => 0,
'Genealogy::Gedcom::Date' => 2.01,
'Scalar::Util' => 0
}, dist => $dist,
clean => { FILES => 'DateTime-Format-Genealogy-*' },
# META_ADD => {
# provides => {}
# },
META_MERGE => {
'meta-spec' => { version => 2 },
resources => {
repository => {
type => 'git',
},
bugtracker => {
mailto => 'bug-DateTime-Format-Genealogy@rt.cpan.org'
}
},
},
MIN_PERL_VERSION => '5.6.2' # Probably would work, but never tested on earlier versions than this
);