Revision: | 1.3 |
Committed: | Wed Dec 12 23:46:31 2007 UTC (16 years, 9 months ago) by root |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rel-0_12, rel-0_11, HEAD |
Changes since 1.2: | +0 -1 lines |
Log Message: | *** empty log message *** |
# | Content |
---|---|
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_PM => { |
12 | Net::SNMP => 5, |
13 | EV => 1.5, |
14 | }, |
15 | }); |
16 | |
17 | $mm->flush; |
18 |