ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-GDB/Makefile.PL
Revision: 1.2
Committed: Thu May 15 10:32:04 2014 UTC (12 years ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_2, HEAD
Changes since 1.1: +1 -0 lines
Log Message:
0.2

File Contents

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