File: Makefile.PL

package info (click to toggle)
libunicode-escape-perl 0.0.2-6
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 132 kB
  • sloc: perl: 75; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 554 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'Unicode::Escape',
    AUTHOR              => 'Hitoshi Amano <seijro@gmail.com>',
    VERSION_FROM        => 'lib/Unicode/Escape.pm',
    ABSTRACT_FROM       => 'lib/Unicode/Escape.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Test::More' => 0,
        'Encode' => 0,
        'Unicode::String' => 0,
    },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'Unicode-Escape-*' },
);