X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile.PL;h=33412805791c6464316c569ab19b5b532efbd0a6;hb=5ab9f4fd1016bb7e8de887f91bb8ef4f450cd508;hp=fe4b6c29f638a4630b5f045baee34448efd9c975;hpb=9590dfe385943c74e96efefd32e43853ed04a985;p=dbsrgits%2FSQL-Translator.git diff --git a/Makefile.PL b/Makefile.PL index fe4b6c2..3341280 100644 --- a/Makefile.PL +++ b/Makefile.PL @@ -3,18 +3,26 @@ package SQL::Translator; use strict; use ExtUtils::MakeMaker; +my @SIGN; +if ($ExtUtils::MakeMaker::VERSION >= 6.18) { + @SIGN = (SIGN => 1); +} + WriteMakefile( 'NAME' => __PACKAGE__, - 'VERSION' => 0.01, + @SIGN, + 'VERSION_FROM' => 'lib/SQL/Translator.pm', 'EXE_FILES' => [ - 'bin/auto-dia.pl', - 'bin/auto-graph.pl', - 'bin/sql_translator.pl', + 'bin/sqlt-diagram', + 'bin/sqlt-diff', + 'bin/sqlt-dumper', + 'bin/sqlt-graph', + 'bin/sqlt', ], 'PREREQ_PM' => { 'Class::Base' => 0, 'File::Basename' => 0, - 'File::Spec' => 0, # Version! + 'File::Spec' => 0, 'GD' => 0, 'GraphViz' => 0, 'IO::Dir' => 0, @@ -22,14 +30,31 @@ WriteMakefile( 'IO::Scalar' => 0, 'Parse::RecDescent' => 1.94, 'Pod::Usage' => 0, - 'Spreadsheet::ParseExcel' => 0, + 'Spreadsheet::ParseExcel' => 0.2602, + 'Template' => 2.10, 'Test::More' => 0, + 'Test::Exception' => 0, + 'Test::Differences' => 0, 'Text::ParseWords' => 0, - 'XML::Writer' => 0, + 'Text::RecordParser' => 0.02, + 'XML::Writer' => 0.500, + 'XML::XPath' => 1.13, + 'YAML' => 0, }, - clean => { - FILES => '$(DISTNAME)-$(VERSION).tar.gz', + 'clean' => { + FILES => '$(DISTVNAME).tar$(SUFFIX)', }, ); +package MY; +use File::Basename qw(basename); + +sub libscan { + my ($self, $file) = @_; + my $bfile = basename($file); + + return if $bfile =~ /^\.(?:cvs)?ignore$/; + return if $bfile =~ /\.swp$/; + return $self->SUPER::libscan($file); +}