| Revision: | 1.2 |
| Committed: | Wed Apr 27 23:43:02 2022 UTC (4 years ago) by root |
| Content type: | text/plain |
| Branch: | MAIN |
| CVS Tags: | rel-1_02, rel-1_01, HEAD |
| Changes since 1.1: | +1 -1 lines |
| Log Message: | 1.01 |
| # | Content |
|---|---|
| 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 => 5, |
| 14 | }, |
| 15 | }); |
| 16 | |
| 17 | $mm->flush; |
| 18 |