ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-Fork-Pool/Makefile.PL
Revision: 1.4
Committed: Sun Oct 26 16:22:37 2014 UTC (9 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_3, rel-1_2, HEAD
Changes since 1.3: +3 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use 5.008;
4
5 WriteMakefile(
6 dist => {
7 PREOP => 'pod2text Pool.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11 NAME => "AnyEvent::Fork::Pool",
12 VERSION_FROM => "Pool.pm",
13 TEST_REQUIRES => {
14 AnyEvent::Fork => 0.6,
15 },
16 PREREQ_PM => {
17 Task::Weaken => 1,
18 common::sense => 3.6,
19 Guard => 1,
20 Array::Heap => 3,
21 AnyEvent => 6,
22 AnyEvent::Fork::RPC => 0,
23 },
24 );
25