ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/Makefile.PL
Revision: 1.4
Committed: Mon Oct 30 20:52:24 2006 UTC (17 years, 6 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_6, rel-2_5, rel-2_0, rel-2_1, rel-2_55, rel-2_51, rel-2_52
Changes since 1.3: +5 -8 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 *** One or more of these modules, in order of importance, is recommended:
9 *** Event, Coro, Glib, Tk
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 NAME => "AnyEvent",
21 VERSION_FROM => "lib/AnyEvent.pm",
22 # PREREQ_PM => {
23 # Event => 0.86,
24 # },
25 );
26