Typo fixing
[dbsrgits/SQL-Translator.git] / Makefile.PL
index 0b3a8f2..8dc1d6e 100644 (file)
@@ -1,36 +1,7 @@
-package SQL::Translator;
+# $Id: Makefile.PL,v 1.35 2004-07-30 15:28:49 kycl4rk Exp $
 
 use strict;
-use ExtUtils::MakeMaker;
-
-WriteMakefile(
-    'NAME'         => __PACKAGE__,
-    'VERSION'      => 0.01,
-    'EXE_FILES'    => [
-        'bin/auto-dia.pl',
-        'bin/auto-graph.pl',
-        'bin/sql_translator.pl',
-    ],
-    'PREREQ_PM'    => {
-        'Class::Base'             => 0,
-        'File::Basename'          => 0,
-        'File::Spec'              => 0,     # Version!
-        'GD'                      => 0,
-        'GraphViz'                => 0,
-        'IO::Dir'                 => 0,
-        'IO::File'                => 0,
-        'IO::Scalar'              => 0,
-        'Parse::RecDescent'       => 1.94,
-        'Pod::Usage'              => 0,
-        'Spreadsheet::ParseExcel' => 0,
-        'Test::More'              => 0,
-        'Text::ParseWords'        => 0,
-        'Text::RecordParser'      => 0.02,
-        'XML::Writer'             => 0,
-    },
-    clean => {
-        FILES => '$(DISTNAME)-$(VERSION).tar.gz',
-    },
-);
-
+use Module::Build::Compat;
 
+Module::Build::Compat->run_build_pl(args => \@ARGV);
+Module::Build::Compat->write_makefile();