ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/cvsroot/Superluminal/Makefile.PL
Revision: 1.1
Committed: Thu Jul 30 18:54:42 2020 UTC (3 years, 11 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Log Message:
*** empty log message ***

File Contents

# User Rev Content
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