ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro-MP/Makefile.PL
Revision: 1.4
Committed: Fri Oct 2 20:42:09 2009 UTC (14 years, 7 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_1, HEAD
Changes since 1.3: +1 -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 => "Coro::MP",
12 VERSION_FROM => "MP.pm",
13 PREREQ_PM => {
14 Coro => 5.2,
15 AnyEvent => 5.11,
16 AnyEvent::MP => 1.21,
17 common::sense => 0,
18 },
19 });
20
21 $mm->flush;
22