This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Remove or update pod references to regexp reëntrance.
[perl5.git] / haiku / Haiku / Makefile.PL
CommitLineData
df00ff3b
IW
1use 5.006;
2use ExtUtils::MakeMaker;
3
4unless ($^O eq "haiku") {
5 die "OS unsupported\n";
6}
7
8#my @libs;
9#push @libs, '-L/lib/w32api -lole32 -lversion' if $^O eq "cygwin";
10
11WriteMakefile(
12 NAME => 'Haiku',
13 VERSION_FROM => 'Haiku.pm',
14# LIBS => \@libs,
15 INSTALLDIRS => ($] >= 5.008004 ? 'perl' : 'site'),
16 NO_META => 1,
17
18 AUTHOR => 'Ingo Weinhold <ingo_weinhold@gmx.de>',
19 ABSTRACT_FROM => 'Haiku.pm',
20);