ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-AIO/Makefile.PL
Revision: 1.3
Committed: Fri Jun 10 02:09:49 2011 UTC (12 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +3 -2 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3     my $mm = MM->new({
4     dist => {
5     PREOP => 'pod2text AIO.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6     COMPRESS => 'gzip -9v',
7     SUFFIX => '.gz',
8     },
9     NAME => "AnyEvent::AIO",
10     VERSION_FROM => "AIO.pm",
11     PREREQ_PM => {
12 root 1.3 IO::AIO => 3.0,
13     AnyEvent => 5.0,
14     common::sense => 3.2,
15 root 1.1 },
16     });
17    
18     $mm->flush;
19