ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-HTTP/Makefile.PL
Revision: 1.4
Committed: Thu Jun 5 17:29:01 2008 UTC (15 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_0, rel-1_02, rel-1_03, rel-1_01, rel-1_04, rel-1_05
Changes since 1.3: +1 -1 lines
Log Message:
*** empty log message ***

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.4 AnyEvent => 4.14,
13 root 1.1 },
14     });
15    
16     $mm->flush;
17