ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-HTTP/Makefile.PL
Revision: 1.11
Committed: Tue Jan 11 06:38:47 2011 UTC (13 years, 4 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_03, rel-2_02, rel-2_01, rel-2_04, rel-2_1
Changes since 1.10: +1 -1 lines
Log Message:
2.01

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3     my $mm = MM->new({
4     dist => {
5 root 1.2 PREOP => 'pod2text HTTP.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6 root 1.1 COMPRESS => 'gzip -9v',
7     SUFFIX => '.gz',
8     },
9 root 1.2 NAME => "AnyEvent::HTTP",
10     VERSION_FROM => "HTTP.pm",
11 root 1.1 PREREQ_PM => {
12 root 1.10 AnyEvent => 5.0,
13 root 1.11 common::sense => 3.3,
14 root 1.1 },
15     });
16    
17     $mm->flush;
18