ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MP/Makefile.PL
Revision: 1.12
Committed: Tue Sep 1 15:11:40 2009 UTC (14 years, 8 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_0
Changes since 1.11: +1 -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 root 1.9 VERSION_FROM => "MP/Kernel.pm",
13 root 1.7 EXE_FILES => ["bin/aemp"],
14 root 1.1 PREREQ_PM => {
15 root 1.10 AnyEvent => 5.11,
16 root 1.12 AnyEvent::Watchdog => 1.0,
17 root 1.10 Digest::MD6 => 0,
18     Digest::HMAC_MD6 => 0,
19     MIME::Base64 => 3,
20     JSON::XS => 2.25,
21 root 1.11 Net::Interface => 1.011,
22 root 1.10 common::sense => 0,
23 root 1.1 },
24     });
25    
26     $mm->flush;
27