File: Makefile.PL

package info (click to toggle)
libtext-unidecode-perl 0.04-1
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 808 kB
  • ctags: 8
  • sloc: perl: 3,555; makefile: 51
file content (20 lines) | stat: -rw-r--r-- 492 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
require 5.006;
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'	=> 'Text::Unidecode',
    'VERSION_FROM' => 'lib/Text/Unidecode.pm', # finds $VERSION
    '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__