ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-DBI/Makefile.PL
Revision: 1.2
Committed: Mon Jun 9 14:39:50 2008 UTC (15 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_1, rel-1_0, rel-2_0
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 DBI.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6 COMPRESS => 'gzip -9v',
7 SUFFIX => '.gz',
8 },
9 NAME => "AnyEvent::DBI",
10 VERSION_FROM => "DBI.pm",
11 PREREQ_PM => {
12 AnyEvent => 4.15,
13 DBI => 1.0,
14 },
15 });
16
17 $mm->flush;
18