File: Makefile.PL

package info (click to toggle)
libunicode-maputf8-perl 1.09-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 72 kB
  • ctags: 25
  • sloc: perl: 576; makefile: 33
file content (16 lines) | stat: -rw-r--r-- 657 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
    'NAME'       => 'Unicode::MapUTF8',
  'VERSION_FROM' => 'lib/Unicode/MapUTF8.pm',
    'linkext'    => { 'LINKTYPE' => '' },    # no link needed
    'dist'       => { 'COMPRESS' => 'gzip -9f',     'SUFFIX' => 'gz',
                           'ZIP' => '/usr/bin/zip','ZIPFLAGS'=>'-rl'},
'PREREQ_PM'      => {
                'Unicode::Map'     => 0,
                'Unicode::String'  => 0,
                'Unicode::Map8'    => 0,
                'Jcode'            => 0,
                        },
);