Remove tests
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / pperl / splashfast / Makefile.PL
1 ############################################################################
2 ## Name:        ext/pperl/splashfast/Makefile.PL
3 ## Purpose:     Makefile.PL
4 ## Author:      Mattia Barbon
5 ## Modified by:
6 ## Created:     04/07/2002
7 ## RCS-ID:      $Id: Makefile.PL 2057 2007-06-18 23:03:00Z mbarbon $
8 ## Copyright:   (c) 2002, 2005 Mattia Barbon
9 ## Licence:     This program is free software; you can redistribute it and/or
10 ##              modify it under the same terms as Perl itself
11 #############################################################################
12
13 use strict;
14 use lib '../../../build';
15 use Wx::build::MakeMaker;
16
17 # strange failure with 5.004
18 if( $] < 5.005 ) {
19   ExtUtils::MakeMaker::WriteEmptyMakefile();
20 } else {
21
22 wxWriteMakefile( NAME            => 'Wx::Perl::SplashFast',
23                  ABSTRACT_FROM   => 'SplashFast.pm',
24                  AUTHOR          => 'Graciliano M. P. <gm@virtuasites.com.br>',
25                  VERSION_FROM    => 'SplashFast.pm',
26                  WX_CORE_LIB     => ' ',
27                  test => {TESTS => ' ',},
28                 );
29
30 }
31
32 # local variables:
33 # mode: cperl
34 # end: