File: Makefile.PL

package info (click to toggle)
libtest-utf8-perl 1.03-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 220 kB
  • sloc: perl: 1,823; makefile: 2
file content (24 lines) | stat: -rw-r--r-- 546 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
use lib '.';
use inc::Module::Install;

name           'Test-utf8';
all_from       'lib/Test/utf8.pm';

# We only need a copy of Test::Builder to run
requires       'Test::Builder'         => 0;

# T::B::T before 0.09 breaks with modern perls
# (this is core, but doesn't ship with 5.7.3)
build_requires 'Test::Builder::Tester' => 0.09;

# We need proper unicode handling
perl_version '5.007003';

license 'perl';
githubmeta;
author_tests('xt');
readme_from 'lib/Test/utf8.pm';

repository 'https://github.com/2shortplanks/Test-utf8';

WriteAll;