File: Makefile.PL

package info (click to toggle)
libtest-html-w3c-perl 0.04-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 96 kB
  • sloc: perl: 136; makefile: 2
file content (19 lines) | stat: -rwxr-xr-x 461 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/perl

use strict;
use ExtUtils::MakeMaker;

BEGIN {
    require 5.006_00;
}

WriteMakefile(
    NAME          => "Test::HTML::W3C",
    ABSTRACT      => "Perform W3C HTML validation testing",
    AUTHOR        => 'victor73@gmail.com',
    VERSION_FROM  => "lib/Test/HTML/W3C.pm",
    PREREQ_PM     => { 
                       "WebService::Validator::HTML::W3C" => 0.1,
                       "Test::Builder::Module" => 0,
                     },
);