| Revision: | 1.13 |
| Committed: | Sun Jun 8 23:33:28 2014 UTC (12 years, 3 months ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-2_2, rel-2_21, rel-2_23, rel-2_22, rel-2_25, rel-2_24, HEAD |
| Changes since 1.12: | +5 -0 lines |
| Log Message: | 2.2 |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.1 | use ExtUtils::MakeMaker; |
| 2 | |||
| 3 | my $mm = MM->new({ | ||
| 4 | dist => { | ||
| 5 | root | 1.2 | PREOP => 'pod2text HTTP.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.2 | NAME => "AnyEvent::HTTP", |
| 10 | VERSION_FROM => "HTTP.pm", | ||
| 11 | root | 1.1 | PREREQ_PM => { |
| 12 | root | 1.12 | AnyEvent => 5.33, |
| 13 | root | 1.11 | common::sense => 3.3, |
| 14 | root | 1.1 | }, |
| 15 | root | 1.13 | META_MERGE => { |
| 16 | recommends => { | ||
| 17 | URI => 0, | ||
| 18 | }, | ||
| 19 | }, | ||
| 20 | root | 1.1 | }); |
| 21 | |||
| 22 | $mm->flush; | ||
| 23 |