ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/Makefile.PL
Revision: 1.9
Committed: Wed Aug 12 21:39:58 2009 UTC (14 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_6
Changes since 1.8: +2 -2 lines
Log Message:
*** empty log message ***

File Contents

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