File: Makefile.PL

package info (click to toggle)
libtest-utf8-perl 1.00-1
  • links: PTS
  • area: main
  • in suites: wheezy
  • size: 208 kB
  • sloc: perl: 1,658; makefile: 2
file content (20 lines) | stat: -rw-r--r-- 444 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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');

WriteAll;