ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/AnyEvent-WebDriver/Makefile.PL
Revision: 1.5
Committed: Wed Aug 29 04:54:21 2018 UTC (5 years, 10 months ago) by root
Content type: text/plain
Branch: MAIN
CVS Tags: rel-0_91, rel-1_0, rel-1_2, rel-1_01, rel-0_5, rel-0_9, HEAD
Changes since 1.4: +6 -1 lines
Log Message:
*** empty log message ***

File Contents

# User Rev Content
1 root 1.1 use ExtUtils::MakeMaker;
2    
3 root 1.4 use Canary::Stability AnyEvent::WebDriver => 1, 5.010;
4 root 1.1
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 root 1.3 CONFIGURE_REQUIRES => { "ExtUtils::MakeMaker" => 6.52, "Canary::Stability" => 2012 },
14 root 1.1 PREREQ_PM => {
15 root 1.3 common::sense => 3.74,
16 root 1.5 JSON::PP => 2.273,
17 root 1.1 AnyEvent => 5.33,
18     AnyEvent::HTTP => 2.22,
19     },
20 root 1.5 META_MERGE => {
21     recommends => {
22     JSON::XS => 3.04,
23     },
24     },
25 root 1.1 });
26    
27     $mm->flush;
28