From 951cf800219e68a149e7567b76718b1a009147a8 Mon Sep 17 00:00:00 2001 From: Yves Orton Date: Wed, 1 Mar 2023 13:24:49 +0100 Subject: dist/Tie-File - add missing build artifacts Fixes https://github.com/Perl/perl5/issues/20874 for this module --- dist/Tie-File/.gitignore | 1 + dist/Tie-File/Makefile.PL | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 dist/Tie-File/.gitignore create mode 100644 dist/Tie-File/Makefile.PL (limited to 'dist') diff --git a/dist/Tie-File/.gitignore b/dist/Tie-File/.gitignore new file mode 100644 index 0000000000..e54624d60d --- /dev/null +++ b/dist/Tie-File/.gitignore @@ -0,0 +1 @@ +!/Makefile.PL diff --git a/dist/Tie-File/Makefile.PL b/dist/Tie-File/Makefile.PL new file mode 100644 index 0000000000..119ac17620 --- /dev/null +++ b/dist/Tie-File/Makefile.PL @@ -0,0 +1,33 @@ +## This -*- perl -*- script writes the Makefile for Tie::File +# You should read "perldoc perlmodinstall" for instructions on +# how to install modules like this. + +require 5.006; # module uses 'our' +use strict; +use ExtUtils::MakeMaker; +WriteMakefile( + 'NAME' => 'Tie::File', + 'VERSION_FROM' => 'lib/Tie/File.pm', + 'ABSTRACT_FROM' => 'lib/Tie/File.pm', + 'AUTHOR' => 'Mark Jason Dominus ', + 'dist'=> { COMPRESS => 'gzip -6f', SUFFIX => 'gz', }, + INSTALLDIRS => ($] >= 5.007 && $] < 5.012) ? 'perl' : 'site', + DIR => [], + META_MERGE => { + resources => { + license => 'http://dev.perl.org/licenses/', + bugtracker => 'https://github.com/Perl/perl5/issues', + repository => 'https://github.com/Perl/perl5/tree/blead/dist/Tie-File', + MailingList => 'http://lists.perl.org/list/perl5-porters.html', + }, + }, +); +# generated by Makepmdist (mkpmdist) v1.01 + +sub libscan { # Determine what shouldn't get installed + my($self, $path) = @_; + return '' if $path =~ m/~/; + return $path; +} +__END__ + -- cgit v1.2.1