ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-HTTP/Makefile.PL
Revision: 1.12
Committed: Tue May 10 12:33:51 2011 UTC (13 years ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-2_11, rel-2_12, rel-2_13, rel-2_14, rel-2_15
Changes since 1.11: +1 -1 lines
Log Message:
2.11

File Contents

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