| 1 |
root |
1.1 |
use ExtUtils::MakeMaker; |
| 2 |
|
|
|
| 3 |
root |
1.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 |
root |
1.1 |
|
| 17 |
|
|
WriteMakefile( |
| 18 |
|
|
dist => { |
| 19 |
root |
1.2 |
PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 20 |
root |
1.1 |
COMPRESS => 'gzip -9v', |
| 21 |
|
|
SUFFIX => '.gz', |
| 22 |
|
|
}, |
| 23 |
root |
1.3 |
NAME => "AnyEvent", |
| 24 |
root |
1.2 |
VERSION_FROM => "lib/AnyEvent.pm", |
| 25 |
root |
1.3 |
PREREQ_PM => { |
| 26 |
|
|
Event => 0.86, |
| 27 |
|
|
}, |
| 28 |
root |
1.1 |
); |
| 29 |
|
|
|