Revision: | 1.4 |
Committed: | Tue Mar 31 21:55:18 2009 UTC (15 years, 8 months ago) by root |
Content type: | text/plain |
Branch: | MAIN |
CVS Tags: | rel-0_1, rel-0_2, rel-0_11 |
Changes since 1.3: | +4 -4 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.2 | Net::SNMP => 5, |
13 | root | 1.4 | AnyEvent => 4.35, # TODO |
14 | root | 1.1 | }, |
15 | }); | ||
16 | |||
17 | $mm->flush; | ||
18 |