File: Makefile.PL

package info (click to toggle)
libhttp-response-encoding-perl 0.06-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 108 kB
  • sloc: perl: 130; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 645 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use 5.008001;
use strict;
use warnings;
use ExtUtils::MakeMaker;

WriteMakefile(
    NAME                => 'HTTP::Response::Encoding',
    AUTHOR              => 'Dan Kogai <dankogai@dan.co.jp>',
    VERSION_FROM        => 'lib/HTTP/Response/Encoding.pm',
    ABSTRACT_FROM       => 'lib/HTTP/Response/Encoding.pm',
    PL_FILES            => {},
    PREREQ_PM => {
        'Encode'         => 2.00,
        'Test::More'     => 0,
	# 'HTTP::Message'  => 5.827,
        'HTTP::Response' => 0,
      },
    dist                => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
    clean               => { FILES => 'HTTP-Response-Encoding-*' },
);