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 |
|