| 1 |
root |
1.1 |
use ExtUtils::MakeMaker; |
| 2 |
|
|
|
| 3 |
root |
1.13 |
use 5.008002; |
| 4 |
root |
1.1 |
|
| 5 |
|
|
my $mm = MM->new({ |
| 6 |
|
|
dist => { |
| 7 |
|
|
PREOP => 'pod2text MP.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 8 |
|
|
COMPRESS => 'gzip -9v', |
| 9 |
|
|
SUFFIX => '.gz', |
| 10 |
|
|
}, |
| 11 |
|
|
NAME => "AnyEvent::MP", |
| 12 |
root |
1.16 |
VERSION_FROM => "MP/Config.pm", |
| 13 |
root |
1.7 |
EXE_FILES => ["bin/aemp"], |
| 14 |
root |
1.1 |
PREREQ_PM => { |
| 15 |
root |
1.15 |
AnyEvent => 6.14, |
| 16 |
root |
1.12 |
AnyEvent::Watchdog => 1.0, |
| 17 |
root |
1.20 |
Digest::SHA3 => 0.24, |
| 18 |
|
|
Digest::HMAC => 1.03, |
| 19 |
root |
1.10 |
MIME::Base64 => 3, |
| 20 |
|
|
JSON::XS => 2.25, |
| 21 |
root |
1.17 |
Guard => 1.022, |
| 22 |
root |
1.10 |
common::sense => 0, |
| 23 |
root |
1.18 |
Task::Weaken => 0, |
| 24 |
root |
1.1 |
}, |
| 25 |
root |
1.19 |
META_MERGE => { |
| 26 |
|
|
recommends => { |
| 27 |
|
|
Net::Interface => 1.011, |
| 28 |
|
|
} |
| 29 |
|
|
}, |
| 30 |
root |
1.1 |
}); |
| 31 |
|
|
|
| 32 |
|
|
$mm->flush; |
| 33 |
|
|
|