File: Makefile.PL

package info (click to toggle)
libfind-lib-perl 1.04-1
  • links: PTS, VCS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 184 kB
  • ctags: 20
  • sloc: perl: 124; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Find::Lib',
    AUTHOR              => 'Yann Kerherve <yannk@cpan.org>',
    VERSION_FROM        => 'lib/Find/Lib.pm',
    ABSTRACT_FROM       => 'lib/Find/Lib.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'File::Spec' => 0,
    },
    test                => { TESTS => 't/*.t t/moretests/*t' },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Find-Lib-*' },
);