Revision: | 1.7 |
Committed: | Sun Oct 31 18:26:27 2010 UTC (13 years, 10 months ago) by root |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rel-6_0, rel-6_02, HEAD |
Changes since 1.6: | +3 -2 lines |
Log Message: | *** empty log message *** |
# | User | Rev | Content |
---|---|---|---|
1 | root | 1.1 | use ExtUtils::MakeMaker; |
2 | |||
3 | my $mm = MM->new({ | ||
4 | dist => { | ||
5 | root | 1.4 | PREOP => 'pod2text SNMP.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
6 | root | 1.1 | COMPRESS => 'gzip -9v', |
7 | SUFFIX => '.gz', | ||
8 | }, | ||
9 | root | 1.4 | NAME => "AnyEvent::SNMP", |
10 | VERSION_FROM => "SNMP.pm", | ||
11 | root | 1.1 | PREREQ_PM => { |
12 | root | 1.7 | common::sense => 3.3, |
13 | Net::SNMP => 5, | ||
14 | AnyEvent => 5.23, | ||
15 | root | 1.1 | }, |
16 | }); | ||
17 | |||
18 | $mm->flush; | ||
19 |