Codebase list libfile-basedir-perl / debian/latest Makefile.PL
debian/latest

Tree @debian/latest (Download .tar.gz)

Makefile.PL @debian/latestraw · history · blame

BEGIN {
  use strict; use warnings;
  unless(eval q{ use 5.006; 1}) {
    print "Perl 5.006 or better required\n";
    exit;
  }
}
# This file was automatically generated by Dist::Zilla::Plugin::Author::Plicease::MakeMaker v2.66.
use strict;
use warnings;
use 5.006;
use ExtUtils::MakeMaker;

my %WriteMakefileArgs = (
  "ABSTRACT"           => "Use the Freedesktop.org base directory specification",
  "AUTHOR"             => "Jaap Karssenberg || Pardus [Larus] <pardus\@cpan.org>, Graham Ollis <plicease\@cpan.org>",
  "CONFIGURE_REQUIRES" => {
    "ExtUtils::MakeMaker" => 0
  },
  "DISTNAME"         => "File-BaseDir",
  "LICENSE"          => "perl",
  "MIN_PERL_VERSION" => "5.006",
  "NAME"             => "File::BaseDir",
  "PM"               => {
    "lib/File/BaseDir.pm"   => "\$(INST_LIB)/File/BaseDir.pm",
    "lib/File/IconTheme.pm" => "\$(INST_LIB)/File/IconTheme.pm",
    "lib/File/UserDirs.pm"  => "\$(INST_LIB)/File/UserDirs.pm"
  },
  "PREREQ_PM" => {
    "Exporter"            => "5.57",
    "IPC::System::Simple" => 0
  },
  "TEST_REQUIRES" => {
    "File::Which" => 0,
    "Test::More"  => "0.98"
  },
  "VERSION" => "0.09",
  "test"    => {
    "TESTS" => "t/*.t"
  }
);

my %FallbackPrereqs = (
  "Exporter"            => "5.57",
  "File::Which"         => 0,
  "IPC::System::Simple" => 0,
  "Test::More"          => "0.98"
);

unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};
  delete $WriteMakefileArgs{BUILD_REQUIRES};
  $WriteMakefileArgs{PREREQ_PM} = \%FallbackPrereqs;
}

delete $WriteMakefileArgs{CONFIGURE_REQUIRES}
  unless eval { ExtUtils::MakeMaker->VERSION(6.52) };

WriteMakefile(%WriteMakefileArgs);