r13918@rob-kinyons-powerbook58: rob | 2006-06-02 10:04:04 -0400
[p5sagit/Excel-Template.git] / Makefile.PL
diff --git a/Makefile.PL b/Makefile.PL
deleted file mode 100644 (file)
index 559544e..0000000
+++ /dev/null
@@ -1,44 +0,0 @@
-use strict;
-
-use ExtUtils::MakeMaker;
-{
-    no strict 'refs';
-
-    my $libscan = \&{"ExtUtils::MM_Any::libscan"};
-    *{"ExtUtils::MM_Any::libscan"} = sub {
-        return '' unless $libscan->(@_);
-        return '' if $_[1] =~ /\.swp$/;
-        return $_[1];
-    };
-}
-
-my $prereqs = {
-    'Test::More'              => 0.01,
-    'XML::Parser'             => 0.01,
-    'IO::Scalar'              => 0.01,
-    'File::Basename'          => 0.01,
-    'Spreadsheet::WriteExcel' => 0.42,
-    'Spreadsheet::WriteExcel::Utility' => 0.01,
-};
-
-# The assumption is Perl 5.8.0 and greater doesn't need Unicode::String.
-
-if ($] < 5.008)
-{
-    eval { require Unicode::String; };
-    if ($@)
-    {
-        print "Note: If you want to work with Unicode, you will need to install";
-        print "the optional module Unicode::String and set USE_UNICODE to true.";
-    }
-}
-
-WriteMakefile(
-    NAME         => 'Excel::Template',
-    VERSION_FROM => 'lib/Excel/Template.pm', # finds $VERSION
-    ABSTRACT     => 'Excel::Template',
-    PREREQ_PM    => $prereqs,
-    ($] >= 5.005 ?
-       (ABSTRACT_FROM => 'lib/Excel/Template.pm',
-        AUTHOR       => 'Rob Kinyon (rob.kinyon@gmail.com)') : ()),
-);