Add libwx-perl
[pkg-perl] / deb-src / libwx-perl / libwx-perl-0.96 / ext / pperl / splashfast / Makefile.PL
diff --git a/deb-src/libwx-perl/libwx-perl-0.96/ext/pperl/splashfast/Makefile.PL b/deb-src/libwx-perl/libwx-perl-0.96/ext/pperl/splashfast/Makefile.PL
new file mode 100755 (executable)
index 0000000..c39fc30
--- /dev/null
@@ -0,0 +1,34 @@
+############################################################################
+## Name:        ext/pperl/splashfast/Makefile.PL
+## Purpose:     Makefile.PL
+## Author:      Mattia Barbon
+## Modified by:
+## Created:     04/07/2002
+## RCS-ID:      $Id: Makefile.PL 2057 2007-06-18 23:03:00Z mbarbon $
+## Copyright:   (c) 2002, 2005 Mattia Barbon
+## Licence:     This program is free software; you can redistribute it and/or
+##              modify it under the same terms as Perl itself
+#############################################################################
+
+use strict;
+use lib '../../../build';
+use Wx::build::MakeMaker;
+
+# strange failure with 5.004
+if( $] < 5.005 ) {
+  ExtUtils::MakeMaker::WriteEmptyMakefile();
+} else {
+
+wxWriteMakefile( NAME            => 'Wx::Perl::SplashFast',
+                 ABSTRACT_FROM   => 'SplashFast.pm',
+                 AUTHOR          => 'Graciliano M. P. <gm@virtuasites.com.br>',
+                 VERSION_FROM    => 'SplashFast.pm',
+                 WX_CORE_LIB     => ' ',
+                 test => {TESTS => ' ',},
+                );
+
+}
+
+# local variables:
+# mode: cperl
+# end: