ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-Porttracker/Makefile.PL
Revision: 1.1
Committed: Mon Nov 15 04:39:14 2010 UTC (13 years, 7 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_0, rel-1_01, rel-0_1
Log Message:
*** empty log message ***

File Contents

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