1use ExtUtils::MakeMaker;
2
3#To bypass make test: t/*.t for perl 5.005
4#if( $] < 5.006 ){
5#    rename('t', 'TEST') ;
6#    open(MANIFEST, '+<MANIFEST') or warn ('Eep! no MANIFEST?');
7#    $_ = do{ undef $/; <MANIFEST> };
8#    s%^t/%TEST/%mg;
9#    seek(MANIFEST, 0, 0);
10#    print MANIFEST;
11#}
12
13WriteMakefile(
14	      NAME	   => 'Text::FIGlet',
15	      VERSION_FROM => 'lib/Text/FIGlet.pm',
16	      PL_FILES     =>{'bin/minifig.PL'=>'bin/minifig.pl' },
17	      EXE_FILES    =>[ glob('bin/*.pl'), 'bin/minifig.pl' ],
18	      ($] < 5.006 ? () :#Test dependency bypass
19	       (PREREQ_PM    =>{'Test::Differences' => undef})),
20	      LICENSE      => 'perl', #More or less
21	     );
22