ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent/Makefile.PL
Revision: 1.3
Committed: Thu Dec 1 18:56:18 2005 UTC (18 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_3, rel-0_2, rel-0_4, rel-1_0, rel-1_02, rel-1_01
Changes since 1.2: +17 -2 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 *** You *need* one or more of the following modules to make use of this module:
9 *** Coro, Event, Glib, Tk
10 ***
11 *** The Makefile.PL depends on Event, but you can ignore this dependency if
12 *** any of the other modules are installed.
13 ***
14
15 EOF
16
17 WriteMakefile(
18 dist => {
19 PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
20 COMPRESS => 'gzip -9v',
21 SUFFIX => '.gz',
22 },
23 NAME => "AnyEvent",
24 VERSION_FROM => "lib/AnyEvent.pm",
25 PREREQ_PM => {
26 Event => 0.86,
27 },
28 );
29