ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Net-SNMP-EV/Makefile.PL
Revision: 1.2
Committed: Mon Dec 3 21:39:37 2007 UTC (16 years, 5 months ago) by root
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -3 lines
Log Message:
*** empty log message ***

File Contents

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