ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/Makefile.PL
Revision: 1.19
Committed: Wed Aug 17 19:43:34 2016 UTC (7 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.18: +5 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use 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 PREREQ_PM => {
15 AnyEvent => 6.14,
16 AnyEvent::Watchdog => 1.0,
17 Digest::MD6 => 0,
18 Digest::HMAC_MD6 => 0, # requires Module::Build, which fails on 5.8.7 :/
19 MIME::Base64 => 3,
20 JSON::XS => 2.25,
21 Guard => 1.022,
22 common::sense => 0,
23 Task::Weaken => 0,
24 },
25 META_MERGE => {
26 recommends => {
27 Net::Interface => 1.011,
28 }
29 },
30 });
31
32 $mm->flush;
33