Codebase list libdata-printer-perl / HEAD Makefile.PL
HEAD

Tree @HEAD (Download .tar.gz)

Makefile.PL @HEADraw · history · blame

use strict;
use warnings;
use ExtUtils::MakeMaker;

my %options = (
    NAME                => 'Data::Printer',
    AUTHOR              => 'Breno G. de Oliveira <garu@cpan.org>',
    VERSION_FROM        => 'lib/Data/Printer.pm',
    ABSTRACT_FROM       => 'lib/Data/Printer.pm',
    LICENSE             => 'perl',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More'      => 0,
        'Scalar::Util'    => 0,
        'version'         => 0.77, # handling VSTRINGS
        'File::Spec'      => 0,
        'File::Temp'      => 0,
        'Fcntl'           => 0,
    },
    META_MERGE => {
        resources => {
            license     => 'http://dev.perl.org/licenses/',
            bugtracker  => 'https://github.com/garu/Data-Printer/issues/',
            repository  => 'https://github.com/garu/Data-Printer',
        },
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES => 'Data-Printer-*' },
);

if ($^O =~ /Win32/i) {
    $options{PREREQ_PM}{'Win32::Console::ANSI'} = 1.0;
}

if ($ENV{DDPTESTCOVERAGE}) {
    foreach my $p (qw(
        DBI DBD::SQLite DBIx::Class
        Time::Piece DateTime::TimeZone DateTime::Incomplete DateTime::Tiny
        Date::Tiny Date::Calc Date::Pcalc Date::Handler
        Date::Handler::Delta Date::Simple Date::Manip Panda::Date
        DateTime DateTime::Duration Mojolicious Class::Date Class::Date::Rel
        Digest::MD5 Digest::SHA Digest::MD2 Digest::MD4
        JSON::PP JSON::XS JSON JSON::Any JSON::MaybeXS JSON::DWIW
        JSON::SL Pegex::JSON Cpanel::JSON::XS JSON::Tiny JSON::Typist Dancer
        Dancer2 HTTP::Message
    )) {
        $options{PREREQ_PM}{$p} = 0;
    }
}

WriteMakefile( %options );