| 1 |
root |
1.1 |
use ExtUtils::MakeMaker; |
| 2 |
|
|
|
| 3 |
|
|
use Canary::Stability Superluminal => 0, 5.010; |
| 4 |
|
|
|
| 5 |
|
|
WriteMakefile( |
| 6 |
|
|
dist => { |
| 7 |
|
|
PREOP => 'pod2text Superluminal.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;', |
| 8 |
|
|
COMPRESS => 'gzip -9v', |
| 9 |
|
|
SUFFIX => '.gz', |
| 10 |
|
|
}, |
| 11 |
|
|
NAME => "Superluminal", |
| 12 |
|
|
VERSION_FROM => "Superluminal.pm", |
| 13 |
|
|
PREREQ_PM => { |
| 14 |
|
|
common::sense => 3.75, |
| 15 |
|
|
AnyEvent => 7.18, # for handle->error |
| 16 |
|
|
}, |
| 17 |
|
|
CONFIGURE_REQUIRES => { |
| 18 |
|
|
"ExtUtils::MakeMaker" => 6.6, |
| 19 |
|
|
"Canary::Stability" => 0, |
| 20 |
|
|
}, |
| 21 |
|
|
META_MERGE => { |
| 22 |
|
|
"meta-spec" => { version => 2}, |
| 23 |
|
|
preqreqs => { |
| 24 |
|
|
runtime => { |
| 25 |
|
|
recommends => { |
| 26 |
|
|
Coro => 6, |
| 27 |
|
|
}, |
| 28 |
|
|
}, |
| 29 |
|
|
}, |
| 30 |
|
|
}, |
| 31 |
|
|
); |
| 32 |
|
|
|