Dave Cross: Still Munging Data With Perl: Online event - Mar 17 Learn more

# This -*- perl -*- script writes the Makefile for Locale::Maketext
# Time-stamp: "2000-05-14 00:49:28 MDT"
require 5.004;
use strict;
WriteMakefile(
NAME => 'Locale-Maketext',
VERSION_FROM => 'lib/Locale/Maketext.pm',
'PREREQ_PM' => {
'I18N::LangTags' => 0.12, # at LEAST!
},
'dist' => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
);
package MY;
sub libscan
{ # Determine things that should *not* be installed
my($self, $path) = @_;
return '' if $path =~ m/~/;
$path;
}
__END__