summaryrefslogtreecommitdiff
path: root/dist
diff options
context:
space:
mode:
authorYves Orton <demerphq@gmail.com>2023-03-01 13:24:49 +0100
committerYves Orton <demerphq@gmail.com>2023-03-02 18:33:16 +0800
commit951cf800219e68a149e7567b76718b1a009147a8 (patch)
treed4bc2b66f622d0f57a7465ae7b61498d17fcf54d /dist
parent32346b7cdde5bcf8a0c8c9ee89ef541d8fe9a7b7 (diff)
downloadperl-951cf800219e68a149e7567b76718b1a009147a8.tar.gz
dist/Tie-File - add missing build artifacts
Fixes https://github.com/Perl/perl5/issues/20874 for this module
Diffstat (limited to 'dist')
-rw-r--r--dist/Tie-File/.gitignore1
-rw-r--r--dist/Tie-File/Makefile.PL33
2 files changed, 34 insertions, 0 deletions
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 <MJD@cpan.org>',
+ '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__
+