File: Makefile.PL

package info (click to toggle)
liblocales-perl 0.26-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 66,444 kB
  • sloc: perl: 361,741; makefile: 4
file content (28 lines) | stat: -rw-r--r-- 856 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
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-*' },
);