ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/Makefile.PL
Revision: 1.11
Committed: Tue May 27 04:59:51 2008 UTC (15 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.10: +1 -1 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use 5.008;
4
5 print <<EOF;
6
7 ***
8 *** The EV or Event modules are recommended for performance, unless
9 *** you have to use one of the other adaptors (Glib, Tk, etc.).
10 ***
11
12 EOF
13
14 WriteMakefile(
15 dist => {
16 PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
17 COMPRESS => 'gzip -9v',
18 SUFFIX => '.gz',
19 },
20 test => { TESTS => "t/*.t t/handle/*.t" },
21 NAME => "AnyEvent",
22 VERSION_FROM => "lib/AnyEvent.pm",
23 EXTRA_META => q{
24 recommends:
25 Net::SSLeay: 0
26 JSON: 2.09
27 JSON::XS 2.01
28 EV: 4.05
29 },
30 );
31