| Revision: | 1.3 |
| Committed: | Sat Oct 30 20:23:44 2010 UTC (15 years, 10 months ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-2_2, rel-2_3, rel-2_1 |
| Changes since 1.2: | +4 -3 lines |
| Log Message: | 2.1 |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.1 | use ExtUtils::MakeMaker; |
| 2 | |||
| 3 | my $mm = MM->new({ | ||
| 4 | dist => { | ||
| 5 | PREOP => 'pod2text DBI.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', | ||
| 6 | COMPRESS => 'gzip -9v', | ||
| 7 | SUFFIX => '.gz', | ||
| 8 | }, | ||
| 9 | NAME => "AnyEvent::DBI", | ||
| 10 | VERSION_FROM => "DBI.pm", | ||
| 11 | root | 1.3 | PREREQ_PM => { |
| 12 | AnyEvent => 4.15, | ||
| 13 | DBI => 1.0, | ||
| 14 | common::sense => 3.3, | ||
| 15 | root | 1.1 | }, |
| 16 | }); | ||
| 17 | |||
| 18 | $mm->flush; | ||
| 19 |