The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
## 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.004;
use strict;
use ExtUtils::MakeMaker;
WriteMakefile(
  'NAME' => 'Tie::File',
  'VERSION_FROM' => 'lib/Tie/File.pm', # finds $VERSION
  'dist'=> { COMPRESS => 'gzip -6f', SUFFIX => 'gz', },
  DIR => [],
  # And Tie::File has no module pre-requisites
);
# generated by Makepmdist (mkpmdist) v1.01

sub libscan { # Determine what shouldn't get installed
  my($self, $path) = @_;
  return '' if $path =~ m/~/;
  return $path;
}
__END__