ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/Makefile.PL
Revision: 1.2
Committed: Sat Aug 1 15:04:30 2009 UTC (14 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
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     VERSION_FROM => "MP.pm",
13     PREREQ_PM => {
14     AnyEvent => 3.9,
15     Digest::MD6 => 0,
16     Digest::HMAC_MD6 => 0,
17 root 1.2 JSON::XS => 2.24,
18 root 1.1 common::sense => 0,
19     },
20     });
21    
22     $mm->flush;
23