CTM

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

#------------------------------------------------------------------------------------------------------
# OBJET : Makefile.PL du module CTM
# APPLICATION : ControlM
# AUTEUR : Yoann Le Garff
# DATE DE CREATION : 16/05/2014
#------------------------------------------------------------------------------------------------------
# AIDE :
#   perldoc Makefile.PL
#------------------------------------------------------------------------------------------------------

#-> BEGIN

#---> ** initialisation **

use strict;
use warnings;

use ExtUtils::MakeMaker 6.64, qw/WriteMakefile/;

#---> ** section principale **

WriteMakefile(
    NAME => 'CTM',
    AUTHOR => 'Le Garff Yoann <pe.weeble@yahoo.fr>',
    META_MERGE => {
        resources => {
            repository => {
                type => 'git',
                url => 'git://github.com/Le-Garff-Yoann/CTM',
                web => 'http://github.com/Le-Garff-Yoann/CTM'
            }
        }
    },
    LICENSE => 'perl',
    VERSION_FROM => 'lib/CTM.pm',
    MIN_PERL_VERSION => '5.6.1',
    CONFIGURE_REQUIRES => {
       'ExtUtils::MakeMaker' => 6.64
    },
    PREREQ_PM => {
        'Sub::Name' => 0,
        'Carp' => 0,
        'Hash::Util' => 0,
        'Exporter::Easy' => 0,
        'Date::Calc' => 6.0,
        'POSIX'  => 0,
        'Try::Tiny' => 0,
        'Perl::OSType' => 0,
        'Scalar::Util' => 0,
        'String::Util' => 0,
        'List::MoreUtils' => 0,
        'Storable' => 0,
        'DBI'  => 0,
    },
    TEST_REQUIRES => {
        'Test::More' => 0,
        'Scalar::Util' => 0
    },
    test => {
        TESTS => 't/*.t'
    },
    clean => {
        FILES => 'blib/* pm_to_blib MYMETA* *.bak *.old'
    }
);

#-> END

__END__

=pod

=head1 NOM

Makefile.PL

=head1 SYNOPSIS

Makefile.PL du module C<CTM>.

=head1 DEPENDANCES

C<ExtUtils::MakeMaker>

=head1 LIENS

- Depot GitHub : http://github.com/le-garff-yoann/CTM

=head1 AUTEUR

Le Garff Yoann <pe.weeble@yahoo.fr>

=head1 LICENCE

Voir licence Perl.

=cut



( run in 3.106 seconds using v1.01-cache-2.11-cpan-39bf76dae61 )