File: Makefile.PL

package info (click to toggle)
libhttp-parser-xs-perl 0.17-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 452 kB
  • sloc: perl: 1,881; ansic: 926; makefile: 13
file content (18 lines) | stat: -rw-r--r-- 398 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 inc::Module::Install;
use Module::Install::TestTarget;
use Module::Install::ReadmeFromPod;

name 'HTTP-Parser-XS';
all_from('lib/HTTP/Parser/XS.pm');
readme_from('lib/HTTP/Parser/XS.pm');
author 'Kazuho Oku';
repository 'https://github.com/kazuho/p5-http-parser-xs';

test_requires 'Test::More' => 0.96;

test_target test_pp => (
    env => { PERL_ONLY => 1 },
	(alias => 'test')
);

WriteAll;