| 1 |
root |
1.1 |
use ExtUtils::MakeMaker; |
| 2 |
|
|
|
| 3 |
root |
1.2 |
use 5.010; # smartmatching |
| 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.6 |
VERSION_FROM => "MP/Base.pm", |
| 13 |
root |
1.7 |
EXE_FILES => ["bin/aemp"], |
| 14 |
root |
1.1 |
PREREQ_PM => { |
| 15 |
root |
1.8 |
AnyEvent => 5.1, |
| 16 |
root |
1.1 |
Digest::MD6 => 0, |
| 17 |
|
|
Digest::HMAC_MD6 => 0, |
| 18 |
root |
1.4 |
MIME::Base64 => 3, |
| 19 |
root |
1.7 |
JSON::XS => 2.25, |
| 20 |
root |
1.1 |
common::sense => 0, |
| 21 |
|
|
}, |
| 22 |
|
|
}); |
| 23 |
|
|
|
| 24 |
|
|
$mm->flush; |
| 25 |
|
|
|