File: Makefile.PL

package info (click to toggle)
libtest-mockdbi-perl 0.70-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 372 kB
  • sloc: perl: 954; makefile: 2
file content (35 lines) | stat: -rwxr-xr-x 1,068 bytes parent folder | download | duplicates (3)
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
29
30
31
32
33
34
35
use strict;
use warnings;

use 5.008;
use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
  'NAME'          => 'Test::MockDBI',
  'VERSION_FROM'  => 'lib/Test/MockDBI.pm',
  'ABSTRACT_FROM' => 'lib/Test/MockDBI.pm',
  'AUTHOR'        => 'Mark Leighton Fisher <mark-fisher@fisherscreek.com>',
  'LICENSE'       => 'perl',
  'META_MERGE'    => {
    resources => { repository => 'https://github.com/aff/Test-MockDBI', },
    keywords => [qw [Test Mock DBI database]],
  },
  'BUILD_REQUIRES' => { 'CPAN::Meta' => 0, },
  'PREREQ_PM'      => {
    'DBI'                   => 0,
    'Test::MockObject'      => 0.14,
    'Test::More'            => 0,
    'File::Spec::Functions' => 0,
    'Test::Warn'            => 0,
    'Test::Differences'     => 0,
    'Scalar::Util'          => 0,
    'Carp'                  => 0,
    'Clone'                 => 0
  },
  dist  => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
  clean => { FILES    => 'Test-MockDBI-*' },
);

__END__