Codebase list liblocales-perl / debian/0.27-1 Makefile.PL
debian/0.27-1

Tree @debian/0.27-1 (Download .tar.gz)

Makefile.PL @debian/0.27-1raw · history · blame

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

WriteMakefile(
    NAME          => 'Locales',
    AUTHOR        => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
    VERSION_FROM  => 'lib/Locales.pm',
    ABSTRACT_FROM => 'lib/Locales.pm',
    PL_FILES      => {},
    ( $ExtUtils::MakeMaker::VERSION < 6.56 )
    ? (
        PREREQ_PM => {
            'Test::More'          => 0,
            'Test::Carp'          => 0,
            'File::Slurp'         => 0,
            'ExtUtils::MakeMaker' => '6.56',
        }
      )
    : (),
    BUILD_REQUIRES => {
        'Test::More'  => 0,
        'Test::Carp'  => 0,
        'File::Slurp' => 0,
    },
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 6.56,
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'Locales-*' },
);