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

WriteMakefile(
    NAME            => 'FTN::Log',
    AUTHOR          => 'Robert James Clay <jame@rocasa.us>',
    VERSION_FROM    => 'lib/FTN/Log.pm',
    ABSTRACT_FROM   => 'lib/FTN/Log.pm',
    LICENSE         => 'perl',
    PL_FILES        => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Test::Pod'  => 1.22,
        'Test::Pod::Coverage' => 1.08,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'FTN-Log-* t/TEST.LOG' },
);