summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--MANIFEST1
-rw-r--r--dist/Tie-File/.gitignore1
-rw-r--r--dist/Tie-File/Makefile.PL33
3 files changed, 35 insertions, 0 deletions
diff --git a/MANIFEST b/MANIFEST
index be09499b1b..982cfdfe7a 100644
--- a/MANIFEST
+++ b/MANIFEST
@@ -4134,6 +4134,7 @@ dist/threads-shared/t/wait.t Test cond_wait and cond_timedwait
dist/threads-shared/t/waithires.t Test sub-second cond_timedwait
dist/Tie-File/ChangeLog Tie::File
dist/Tie-File/lib/Tie/File.pm Files as tied arrays
+dist/Tie-File/Makefile.PL Build Tie::File
dist/Tie-File/t/01_gen.t Generic read/write tests for Tie::File
dist/Tie-File/t/02_fetchsize.t File length fetch test for Tie::File
dist/Tie-File/t/03_longfetch.t Past-the-end-of-the-array tests for Tie::File
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__
+