ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-Fork/Makefile.PL
Revision: 1.2
Committed: Tue Apr 2 18:00:04 2013 UTC (11 years, 2 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_01
Changes since 1.1: +4 -4 lines
Log Message:
fork it is

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use 5.008;
4
5 WriteMakefile(
6 dist => {
7 PREOP => 'pod2text Fork.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11 NAME => "AnyEvent::Fork",
12 VERSION_FROM => "Fork/Util.pm",
13 PREREQ_PM => {
14 common::sense => 3.6,
15 Proc::FastSpawn => 0.1,
16 AnyEvent => 6,
17 },
18 );
19