File: Makefile.PL

package info (click to toggle)
libhttp-multipartparser-perl 0.02-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 340 kB
  • sloc: perl: 1,923; makefile: 2
file content (18 lines) | stat: -rw-r--r-- 462 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
use lib '.';
use strict;
use inc::Module::Install;

name           'HTTP-MultiPartParser';
perl_version   '5.008001';
all_from       'lib/HTTP/MultiPartParser.pm';
repository     'http://github.com/chansen/p5-http-multipartparser';
readme_from    'lib/HTTP/MultiPartParser.pod';

requires       'Carp'         => '0';
requires       'Scalar::Util' => '0';
test_requires  'Test::More'   => '0.88';
test_requires  'Test::Deep'   => '0';

tests 't/*.t';

WriteAll;