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
1 use strict;
2 use warnings;
3
4 use ExtUtils::MakeMaker;
5
6 my %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
21 WriteMakefile(%WriteMakefileArgs);
22