ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-BDB/Makefile.PL
Revision: 1.2
Committed: Tue Jul 21 03:35:50 2009 UTC (14 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-1_1
Changes since 1.1: +1 -1 lines
Log Message:
1.1

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3     my $mm = MM->new({
4     dist => {
5     PREOP => 'pod2text BDB.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
6     COMPRESS => 'gzip -9v',
7     SUFFIX => '.gz',
8     },
9     NAME => "AnyEvent::BDB",
10     VERSION_FROM => "BDB.pm",
11     PREREQ_PM => {
12     BDB => 1.5,
13 root 1.2 AnyEvent => 3.81,
14 root 1.1 },
15     });
16    
17     $mm->flush;
18