ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-Porttracker/Makefile.PL
Revision: 1.3
Committed: Tue Jul 26 18:20:09 2016 UTC (7 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +1 -0 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     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     JSON => 2,
15     MIME::Base64 => 3.08,
16     },
17 root 1.2 META_MERGE => {
18     recommends => {
19     Digest::HMAC_MD6 => 0.01,
20     Digest::HMAC => 1,
21     Digest::SHA3 => 0.24,
22 root 1.3 CBOR::XS => 1.5,
23 root 1.2 },
24     },
25 root 1.1 });
26    
27     $mm->flush;
28