Makefile.PL 492 B

123456789101112131415161718192021
  1. require 5.006;
  2. use ExtUtils::MakeMaker;
  3. # See lib/ExtUtils/MakeMaker.pm for details of how to influence
  4. # the contents of the Makefile that is written.
  5. WriteMakefile(
  6. 'NAME' => 'Text::Unidecode',
  7. 'VERSION_FROM' => 'lib/Text/Unidecode.pm', # finds $VERSION
  8. 'dist' => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
  9. );
  10. package MY;
  11. sub libscan
  12. { # Determine things that should *not* be installed
  13. my($self, $path) = @_;
  14. return '' if $path =~ m/~/;
  15. $path;
  16. }
  17. __END__