ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-DBI/Makefile.PL
Revision: 1.4
Committed: Tue Aug 15 07:28:55 2017 UTC (6 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-3_0
Changes since 1.3: +11 -3 lines
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2
3 use Canary::Stability AnyEvent::DBI => 1, 5.008;
4
5 my $mm = MM->new({
6 dist => {
7 PREOP => 'pod2text DBI.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8 COMPRESS => 'gzip -9v',
9 SUFFIX => '.gz',
10 },
11 NAME => "AnyEvent::DBI",
12 VERSION_FROM => "DBI.pm",
13 CONFIGURE_REQUIRES => {
14 "ExtUtils::MakeMaker" => 6.6,
15 "Canary::Stability" => 0,
16 },
17 PREREQ_PM => {
18 AnyEvent => 4.15,
19 DBI => 1.0,
20 common::sense => 3.3,
21 CBOR::XS => 1.7,
22 Convert::Scalar => 1.12,
23 },
24 });
25
26 $mm->flush;
27