ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-MPV/Makefile.PL
Revision: 1.1
Committed: Sun Mar 19 19:36:40 2023 UTC (14 months ago) by root
Content type: text/plain
Branch: MAIN
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 common::sense => 3.2,
18 JSON::PP => 2.0,
19 AnyEvent => 5.0,
20 },
21 });
22
23 $mm->flush;
24