| Revision: | 1.1 |
| Committed: | Sun Aug 2 14:55:10 2009 UTC (17 years, 1 month ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-1_0, rel-0_1, rel-0_9 |
| Log Message: | *** empty log message *** |
| # | User | Rev | Content |
|---|---|---|---|
| 1 | root | 1.1 | use ExtUtils::MakeMaker; |
| 2 | |||
| 3 | my $mm = MM->new({ | ||
| 4 | dist => { | ||
| 5 | PREOP => 'pod2text Watchdog.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', | ||
| 6 | COMPRESS => 'gzip -9v', | ||
| 7 | SUFFIX => '.gz', | ||
| 8 | }, | ||
| 9 | NAME => "AnyEvent::Watchdog", | ||
| 10 | VERSION_FROM => "Watchdog.pm", | ||
| 11 | PREREQ_PM => { | ||
| 12 | common::sense => 0, | ||
| 13 | AnyEvent => 4.15, | ||
| 14 | }, | ||
| 15 | }); | ||
| 16 | |||
| 17 | $mm->flush; | ||
| 18 |