diff --git a/Build.PL b/Build.PL deleted file mode 100644 index aa150a7..0000000 --- a/Build.PL +++ /dev/null @@ -1,23 +0,0 @@ -use strict; -use warnings; - -use Module::Build; -my %prereq = ( - # splitpath(), rel2abs() - 'File::Spec' => 0.8, - 'File::Basename' => 0, - ); - -my $build = Module::Build->new( - module_name => 'ExtUtils::Manifest', - license => 'perl', - installdirs => 'core', - requires => \%prereq, - dist_version_from => 'lib/ExtUtils/Manifest.pm', - dist_author => ['Randy Kobes '], - dist_abstract_from => 'lib/ExtUtils/Manifest.pm', -); - -$build->add_build_element('SKIP'); -$build->create_build_script; - diff --git a/Makefile.PL b/Makefile.PL deleted file mode 100644 index 8bbcef8..0000000 --- a/Makefile.PL +++ /dev/null @@ -1,30 +0,0 @@ -use strict; -use warnings; -use ExtUtils::MakeMaker; -# See lib/ExtUtils/MakeMaker.pm for details of how to influence -# the contents of the Makefile that is written. - -my %prereq = ( - # splitpath(), rel2abs() - 'File::Spec' => 0.8, - 'File::Basename' => 0, - ); - -my %opts = ( - NAME => 'ExtUtils::Manifest', - VERSION_FROM => 'lib/ExtUtils/Manifest.pm', - PL_FILES => {}, - PREREQ_PM => \%prereq, - INSTALLDIRS => 'perl', - ); - -my $eu_version = $ExtUtils::MakeMaker::VERSION; -if ($eu_version >= 5.43) { - $opts{ABSTRACT_FROM} = 'lib/ExtUtils/Manifest.pm'; - $opts{AUTHOR} = 'Randy Kobes '; -} -if ($eu_version > 6.11) { - $opts{NO_META} = 1; -} - -WriteMakefile(%opts); diff --git a/dist.ini b/dist.ini new file mode 100644 index 0000000..eff43fc --- /dev/null +++ b/dist.ini @@ -0,0 +1,33 @@ +name = ExtUtils-Manifest +version = 1.58 +author = Andreas Koenig +author = Michael G Schwern +author = Randy Kobes +author = The Perl 5 Porters +license = Perl_5 +copyright_holder = Andreas Koenig + +[@Basic] + +[DualLife] + +[MetaConfig] +[MetaJSON] +[PodSyntaxTests] + +[MetaResources] +repository.type = git +repository.url = git://github.com/rafl/extutils-manifest.git +repository.web = http://github.com/rafl/extutils-manifest +bugtracker.web = http://rt.perl.org/rt3/ +bugtracker.mailto = perlbug@perl.org +homepage = https://metacpan.org/release/ExtUtils-Manifest + +[Authority] +authority = cpan:P5P +do_metadata = 1 +do_munging = 0 + +[Prereqs] +File::Spec = 0.8 +File::Basename = 0