ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-WebDriver/Makefile.PL
Revision: 1.1
Committed: Tue Aug 28 22:55:57 2018 UTC (5 years, 9 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_0
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3     use Canary::Stability AnyEvent => 1, 5.008001;
4    
5     my $mm = MM->new({
6     dist => {
7     PREOP => 'pod2text WebDriver.pm | tee README >$(DISTVNAME)/README; chmod -R u=rwX,go=rX . ;',
8     COMPRESS => 'gzip -9v',
9     SUFFIX => '.gz',
10     },
11     NAME => "AnyEvent::WebDriver",
12     VERSION_FROM => "WebDriver.pm",
13     CONFIGURE_REQUIRES => { "ExtUtils::MakeMaker" => 6.52, "Canary::Stability" => 0 },
14     PREREQ_PM => {
15     AnyEvent => 5.33,
16     AnyEvent::HTTP => 2.22,
17     common::sense => 3.74,
18     },
19     });
20    
21     $mm->flush;
22