ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MPV/Makefile.PL
Revision: 1.2
Committed: Sun Mar 19 20:30:48 2023 UTC (13 months, 2 weeks ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_1, rel-1_0, rel-1_02, rel-1_03, rel-0_2, rel-1_01, HEAD
Changes since 1.1: +1 -0 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 my $mm = MM->new({
4 dist => {
5 PREOP => 'pod2text MPV.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6 COMPRESS => 'gzip -9v',
7 SUFFIX => '.gz',
8 },
9 NAME => "AnyEvent::MPV",
10 VERSION_FROM => "MPV.pm",
11 META_MERGE => {
12 recommends => {
13 JSON::XS => 3,
14 },
15 },
16 PREREQ_PM => {
17 Task::Weaken => 1,
18 common::sense => 3.2,
19 JSON::PP => 2.0,
20 AnyEvent => 5.0,
21 },
22 });
23
24 $mm->flush;
25