This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Upgrade DB_File to 1.827
[perl5.git] / cpan / Unicode-Collate / Makefile.PL
CommitLineData
f58b9ef1
CBW
1require 5.006001;
2use ExtUtils::MakeMaker;
3
4my $clean = {};
5
6if (-f "Collate.xs") {
7 print STDERR "Making header files for XS...\n";
8
9 do 'mkheader' or die $@ || "mkheader: $!";
10
11 $clean = { FILES => 'ucatbl.h' };
12}
13
14WriteMakefile(
17609435
CBW
15 'AUTHOR' => 'SADAHIRO Tomoyuki <SADAHIRO@cpan.org>',
16 'ABSTRACT' => 'Unicode Collation Algorithm',
f58b9ef1 17 'INSTALLDIRS' => $] >= 5.007002 ? 'perl' : 'site',
17609435 18 'LICENSE' => 'perl',
f58b9ef1
CBW
19 'NAME' => 'Unicode::Collate',
20 'VERSION_FROM' => 'Collate.pm', # finds $VERSION
21 'clean' => $clean,
22 'PREREQ_PM' => {
23 Carp => 0,
24 constant => 0,
25 DynaLoader => 0,
26 File::Spec => 0,
27 strict => 0,
f58b9ef1
CBW
28 warnings => 0,
29 },
30);