File: Makefile.PL

package info (click to toggle)
libmodule-want-perl 0.6-2
  • links: PTS, VCS
  • area: main
  • in suites: buster, stretch
  • size: 108 kB
  • ctags: 12
  • sloc: perl: 110; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 615 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME          => 'Module::Want',
    AUTHOR        => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
    VERSION_FROM  => 'lib/Module/Want.pm',
    ABSTRACT_FROM => 'lib/Module/Want.pm',
    PL_FILES      => {},
    PREREQ_PM     => {
        'Test::More'       => 0,
        'Test::Carp'       => 0,
        'File::Spec'       => 0,
        'File::Temp'       => 0,    # testing
        'File::Path::Tiny' => 0,    # testing
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'Module-Want-*' },
);