Codebase list liblocales-perl / upstream/0.21 Makefile.PL
upstream/0.21

Tree @upstream/0.21 (Download .tar.gz)

Makefile.PL @upstream/0.21raw · 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            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Test::Carp' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Locales-*' },
);