ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/EV-Loop-Async/Makefile.PL
Revision: 1.1
Committed: Tue Jul 14 02:59:55 2009 UTC (14 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
Log Message:
*** empty log message ***

File Contents

# Content
1 use ExtUtils::MakeMaker;
2 use EV::MakeMaker;
3
4 my $mm = MM->new({EV::MakeMaker::ev_args (
5 dist => {
6 PREOP => 'pod2text Async.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
7 COMPRESS => 'gzip -9v',
8 SUFFIX => '.gz',
9 },
10 NAME => "EV::Loop::Async",
11 VERSION_FROM => "Async.pm",
12 LIBS => ["-lpthread"],
13 PREREQ_FATAL => 1,
14 PREREQ_PM => {
15 EV => 3.6, #TODO bump
16 Async::Interrupt => 0,
17 common::sense => 0,
18 },
19 META_MERGE => {
20 configure_requires => {
21 EV => 2.0,
22 },
23 },
24 )});
25
26 $mm->flush;
27