Changeset 13266

Show
Ignore:
Timestamp:
06/05/08 08:49:01 (5 years ago)
Author:
tokuhirom
Message:

use Module::Install
move author_tests to xt/

Location:
lang/perl/HTML-DateSelector/trunk
Files:
1 added
1 modified
4 moved

Legend:

Unmodified
Added
Removed
  • lang/perl/HTML-DateSelector/trunk/Makefile.PL

    r13260 r13266  
    1 use strict; 
    2 use warnings; 
    3 use ExtUtils::MakeMaker; 
     1use inc::Module::Install; 
     2name 'HTML-DateSelector'; 
     3all_from 'lib/HTML/DateSelector.pm'; 
    44 
    5 WriteMakefile( 
    6     NAME                => 'HTML::DateSelector', 
    7     AUTHOR              => 'Tokuhiro Matsuno <tokuhiro __at__ mobilefactory.jp>', 
    8     VERSION_FROM        => 'lib/HTML/DateSelector.pm', 
    9     ABSTRACT_FROM       => 'lib/HTML/DateSelector.pm', 
    10     PL_FILES            => {}, 
    11     PREREQ_PM => { 
    12     }, 
    13     dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, 
    14     clean               => { FILES => 'HTML-DateSelector-*' }, 
    15 ); 
     5tests 't/*.t t/*/*.t t/*/*/*.t'; 
     6build_requires 'Test::More'; 
     7build_requires 'YAML'; 
     8recursive_author_tests 'xt'; 
     9auto_include; 
     10WriteAll;