File: Makefile.PL

package info (click to toggle)
libmodule-install-xsutil-perl 0.45-3
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 228 kB
  • sloc: perl: 1,920; ansic: 36; makefile: 13
file content (30 lines) | stat: -rw-r--r-- 595 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#!perl
use strict;
use inc::Module::Install;

all_from 'lib/Module/Install/XSUtil.pm';

requires 'Module::Install' => 0.91;

test_requires 'Test::More' => 0.88;

# these modules are required for t/01_example.t
test_requires 'Devel::PPPort'     => 3.19;
test_requires 'ExtUtils::ParseXS' => 2.21;
test_requires 'XSLoader'          => 0.10;
test_requires 'B::Hooks::OP::Annotation'
                                  => 0.43;

tests 't/*.t';
author_tests 'xt';

auto_set_repository;

clean_files qw(
		Module-Install-XSUtil-* *.stackdump
		cover_db
		nytprof
		*.out
);

WriteAll check_nmake => 0;