File: Makefile.PL

package info (click to toggle)
libtest-mock-cmd-perl 0.7-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 176 kB
  • sloc: perl: 166; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 613 bytes parent folder | download
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          => 'Test::Mock::Cmd',
    AUTHOR        => 'Daniel Muey <http://drmuey.com/cpan_contact.pl>',
    VERSION_FROM  => 'lib/Test/Mock/Cmd.pm',
    ABSTRACT_FROM => 'lib/Test/Mock/Cmd.pm',
    PL_FILES      => {},
    PREREQ_PM     => {
        'Test::More' => 0,    # for testing, I know I know: Test::XT
        'Test::Carp' => 0,    # for testing
                              # 'Test::Output' => 0, # for testing
    },
    dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean => { FILES    => 'Test-Mock-Cmd-*' },
);