ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/Makefile.PL
Revision: 1.22
Committed: Tue Jul 24 07:09:28 2018 UTC (5 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_02, rel-2_01, HEAD
Changes since 1.21: +2 -1 lines
Log Message:
2.01

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use Canary::Stability AnyEvent::MP => 1, 5.008002;
4
5 my $mm = MM->new({
6 dist => {
7 PREOP => 'pod2text MP.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11 NAME => "AnyEvent::MP",
12 VERSION_FROM => "MP/Config.pm",
13 EXE_FILES => ["bin/aemp"],
14 CONFIGURE_REQUIRES => { ExtUtils::MakeMaker => 6.52, Canary::Stability => 0 },
15 PREREQ_PM => {
16 AnyEvent => 6.14,
17 AnyEvent::Watchdog => 1.0,
18 Digest::SHA3 => 0.24,
19 Digest::HMAC => 1.03,
20 MIME::Base64 => 3,
21 JSON::XS => 2.25,
22 CBOR::XS => 1.5,
23 Guard => 1.022,
24 common::sense => 0,
25 Task::Weaken => 0,
26 },
27 META_MERGE => {
28 recommends => {
29 Net::Interface => 1.011,
30 }
31 },
32 });
33
34 $mm->flush;
35