use strict; use warnings; use ExtUtils::MakeMaker; eval 'use ExtUtils::MakeMaker::Coverage'; warn "Optional ExtUtils::MakeMaker::Coverage not available\n" if $@; WriteMakefile( ( MM->can( 'signature_target' ) ? ( SIGN => 1 ) : () ), NAME => 'Set::IntSpan::Fast', AUTHOR => 'Andy Armstrong ', VERSION_FROM => 'lib/Set/IntSpan/Fast.pm', ABSTRACT_FROM => 'lib/Set/IntSpan/Fast.pm', LICENSE => 'perl', PL_FILES => {}, PREREQ_PM => { 'Test::More' => 0, 'Data::Types' => 0, 'List::Util' => 0, }, dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, clean => { FILES => 'Set-IntSpan-Fast-*' }, );