File: Makefile.PL

package info (click to toggle)
liblog-dispatch-message-passing-perl 0.009-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 268 kB
  • sloc: perl: 1,406; makefile: 8; sh: 4
file content (39 lines) | stat: -rw-r--r-- 920 bytes parent folder | download | duplicates (5)
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
36
37
38
39
use strict;
use warnings;
use inc::Module::Install;
use Module::Install::Authority;
use Module::Install::AuthorRequires;
use Module::Install::AuthorTests;

all_from 'lib/Log/Dispatch/Message/Passing.pm';

license 'AGPL_3';

authority('cpan:GHENRY');
resources(
    repository => "git://github.com/suretec/Log-Dispatch-Message-Passing.git",
);

requires 'Message::Passing' => '0.006';
requires 'Log::Dispatch';
requires 'Scalar::Util';

test_requires 'Test::More' => '0.88';

author_requires 'Log::Message::Structured';
author_requires 'Test::Pod' => '1.14';
author_requires 'Test::NoTabs';
author_requires 'Test::Pod::Coverage' => '1.04';
author_requires 'Pod::Coverage' => '0.19';
author_requires 'Pod::Coverage::TrustPod';
author_requires 'Test::Spelling';

author_tests 't/author';

if ($Module::Install::AUTHOR) {
    system("pod2text lib/Log/Dispatch/Message/Passing.pm > README")
        and die $!;
}

WriteAll;