This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Shorten test descriptions
[perl5.git] / dist / Search-Dict / Makefile.PL
CommitLineData
1d044122
DG
1use strict;
2use warnings;
3
4use ExtUtils::MakeMaker;
5
6my %WriteMakefileArgs = (
7 "NAME" => "Search::Dict",
8 "VERSION_FROM" => "lib/Search/Dict.pm",
9 "ABSTRACT_FROM" => "lib/Search/Dict.pm",
10 "AUTHOR" => "The Perl 5 Porters",
11 "EXE_FILES" => [],
12 "LICENSE" => "perl",
13 "PREREQ_PM" => {
14 "Exporter" => 0,
15 "Test::More" => 0.47,
16 "Tie::Handle" => 0,
17 },
18 INSTALLDIRS => ( $] lt '5.012' ? 'perl' : 'site' ),
19);
20
21WriteMakefile(%WriteMakefileArgs);
22