File: Makefile.PL

package info (click to toggle)
libtest-more-utf8-perl 0.05-1
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 108 kB
  • sloc: perl: 104; makefile: 2
file content (15 lines) | stat: -rw-r--r-- 484 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use 5.007003; # the earlier perl doesn't have utf8 capabilities

use ExtUtils::MakeMaker;
BEGIN{ $ENV{AUTHOR} and require CPAN::Meta and CPAN::Meta->import();  };

WriteMakefile(
	NAME              => 'Test::More::UTF8',
	VERSION_FROM      => 'lib/Test/More/UTF8.pm',
	PREREQ_PM         => {
		'Test::More' => 0,
	},
	ABSTRACT_FROM     => 'lib/Test/More/UTF8.pm', # retrieve abstract from module
	AUTHOR            => 'Mons Anderson <mons@cpan.org>',
	LICENSE           => 'perl',
);