| 1 |
root |
1.1 |
use ExtUtils::MakeMaker; |
| 2 |
|
|
|
| 3 |
root |
1.3 |
use 5.008; |
| 4 |
|
|
|
| 5 |
|
|
print <<EOF; |
| 6 |
|
|
|
| 7 |
|
|
*** |
| 8 |
root |
1.4 |
*** One or more of these modules, in order of importance, is recommended: |
| 9 |
root |
1.5 |
*** EV, Event, Coro, Glib, Tk |
| 10 |
root |
1.3 |
*** |
| 11 |
|
|
|
| 12 |
|
|
EOF |
| 13 |
root |
1.1 |
|
| 14 |
|
|
WriteMakefile( |
| 15 |
|
|
dist => { |
| 16 |
root |
1.2 |
PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 17 |
root |
1.1 |
COMPRESS => 'gzip -9v', |
| 18 |
|
|
SUFFIX => '.gz', |
| 19 |
|
|
}, |
| 20 |
root |
1.3 |
NAME => "AnyEvent", |
| 21 |
root |
1.2 |
VERSION_FROM => "lib/AnyEvent.pm", |
| 22 |
root |
1.4 |
# PREREQ_PM => { |
| 23 |
|
|
# Event => 0.86, |
| 24 |
|
|
# }, |
| 25 |
root |
1.1 |
); |
| 26 |
|
|
|