File: Makefile.PL

package info (click to toggle)
libfile-read-perl 0.0801-5.1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 160 kB
  • sloc: perl: 121; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use ExtUtils::MakeMaker;
eval 'use ExtUtils::MakeMaker::Coverage';

WriteMakefile(
    NAME                => 'File::Read',
    LICENSE             => 'perl',
    AUTHOR              => 'Sébastien Aperghis-Tramoni <sebastien@aperghis.net>',
    VERSION_FROM        => 'lib/File/Read.pm',
    ABSTRACT_FROM       => 'lib/File/Read.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'File::Slurp'   => 0,
        'Test::More'    => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'File-Read-*' },
);