1 |
use ExtUtils::MakeMaker; |
2 |
|
3 |
use 5.008; # AnyEvent core seems to work with 5.6 |
4 |
|
5 |
print <<EOF; |
6 |
|
7 |
*** |
8 |
*** The EV module is recommended for even better performance, unless you |
9 |
*** have to use one of the other adaptors (Event, Glib, Tk, etc.). |
10 |
*** |
11 |
*** This module does not have ANY dependencies, even if it might look |
12 |
*** otherwise. If you are building a distribution package or have |
13 |
*** difficulties installing this package due to dependencies, report this |
14 |
*** to the packager as a bug. |
15 |
*** |
16 |
*** This module is guaranteed to stay pure-perl and still be full-featured |
17 |
*** and performant, even without any optionally recommended modules. |
18 |
*** |
19 |
|
20 |
EOF |
21 |
|
22 |
WriteMakefile( |
23 |
dist => { |
24 |
PREOP => 'pod2text lib/AnyEvent.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
25 |
COMPRESS => 'gzip -9v', |
26 |
SUFFIX => '.gz', |
27 |
}, |
28 |
test => { TESTS => "t/*.t t/handle/*.t" }, |
29 |
NAME => "AnyEvent", |
30 |
VERSION_FROM => "lib/AnyEvent.pm", |
31 |
META_MERGE => { |
32 |
recommends => { |
33 |
"Net::SSLeay" => 1.32, |
34 |
"JSON" => 2.09, |
35 |
"JSON::XS" => 2.2, |
36 |
"EV" => 3.05, |
37 |
"Guard" => 1.02, |
38 |
} |
39 |
}, |
40 |
); |
41 |
|
42 |
sub MY::postamble { |
43 |
<<EOF; |
44 |
|
45 |
# set \$VERSION in all modules |
46 |
setver: |
47 |
\$(PERL) -pi -e 's/^(\\s*(our\\s*)?\\\$\$VERSION\\s*=\\s*).*\$\$/\$\${1}\$(VERSION);/' \$(TO_INST_PM) |
48 |
|
49 |
EOF |
50 |
} |
51 |
|